Package org.cloudfoundry.client.lib.archive

Examples of org.cloudfoundry.client.lib.archive.DirectoryApplicationArchive$EntryAdapter


  @Override
  public void uploadApplication(String appName, File file, UploadStatusCallback callback) throws IOException {
    Assert.notNull(file, "File must not be null");
    if (file.isDirectory()) {
      ApplicationArchive archive = new DirectoryApplicationArchive(file);
      uploadApplication(appName, archive, callback);
    } else {
      ZipFile zipFile = new ZipFile(file);
      try {
        ApplicationArchive archive = new ZipApplicationArchive(zipFile);
View Full Code Here

TOP

Related Classes of org.cloudfoundry.client.lib.archive.DirectoryApplicationArchive$EntryAdapter

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.