Package org.platformlayer.service.cloud.direct.ops

Examples of org.platformlayer.service.cloud.direct.ops.DownloadImage


    // tun.bridgeName = Providers.getProperty(assignNetworkAddress, "bridge");
    // instance.addChild(tun);
    // }

    {
      DownloadImage download = injected(DownloadImage.class);
      download.imageFile = new File(getInstanceDir(), "rootfs");
      download.recipeKey = model.recipeId;
      download.imageFormats = Collections.singletonList(ImageFormat.Tar);
      instance.addChild(download);
    }
View Full Code Here


      instance.addChild(iso);
    }

    {
      DownloadImage download = injected(DownloadImage.class);
      download.imageFile = getImagePath();
      download.recipeKey = recipeId;
      download.imageFormats = Arrays.asList(ImageFormat.DiskRaw, ImageFormat.DiskQcow2);
      instance.addChild(download);
    }
View Full Code Here

TOP

Related Classes of org.platformlayer.service.cloud.direct.ops.DownloadImage

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.