Package org.cloudfoundry.ide.eclipse.server.core.internal

Examples of org.cloudfoundry.ide.eclipse.server.core.internal.CachingApplicationArchive$ZipModuleFileEntryAdapter


          // a partial war file generation of only the changed
          // resources
          // AFTER
          // the server determines the list of missing file names.
          if (applicationArchive instanceof CachingApplicationArchive) {
            final CachingApplicationArchive cachingArchive = (CachingApplicationArchive) applicationArchive;
            client.uploadApplication(appName, cachingArchive, new UploadStatusCallback() {

              public void onProcessMatchedResources(int length) {

              }

              public void onMatchedFileNames(Set<String> matchedFileNames) {
                cachingArchive.generatePartialWarFile(matchedFileNames);
              }

              public void onCheckResources() {

              }
View Full Code Here


  protected ApplicationArchive getIncrementalPublishArchive(final ApplicationDeploymentInfo deploymentInfo,
      IModule[] modules) {
    IModuleResource[] allResources = getResources(modules);
    IModuleResourceDelta[] deltas = getPublishedResourceDelta(modules);
    List<IModuleResource> changedResources = getChangedResources(deltas);
    ApplicationArchive moduleArchive = new CachingApplicationArchive(Arrays.asList(allResources), changedResources,
        modules[0], deploymentInfo.getDeploymentName());

    return moduleArchive;
  }
View Full Code Here

TOP

Related Classes of org.cloudfoundry.ide.eclipse.server.core.internal.CachingApplicationArchive$ZipModuleFileEntryAdapter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.