Package org.jclouds.fujitsu.fgcp.domain.DiskImage

Examples of org.jclouds.fujitsu.fgcp.domain.DiskImage.Builder


         "Windows Server 2008 R2 EE 64bit (English)");

   @Test
   public void testConversion() {
      for (String description : operatingSystems) {
         Builder builder = DiskImage.builder();
         builder.osName(description);
         builder.osType("hvm");
         builder.creatorName("creator");
         builder.registrant("registrant");
         builder.description("description");
         builder.id("ABCDEFGH");
         DiskImage image = builder.build();

         OperatingSystem os = new DiskImageToOperatingSystem().apply(image);

         assertNotNull(os, description);
         assertNotNull(os.getFamily(), description);
View Full Code Here


         "Windows Server 2008 R2 EE 64bit (English)");

   @Test
   public void testConversion() {
      for (String description : operatingSystems) {
         Builder builder = DiskImage.builder();
         builder.osName(description);
         builder.osType("hvm");
         builder.creatorName("creator");
         builder.registrant("registrant");
         builder.description("description");
         builder.id("ABCDEFGH");
         DiskImage image = builder.build();

         OperatingSystem os = new DiskImageToOperatingSystem().apply(image);

         assertNotNull(os, description);
         assertNotNull(os.getFamily(), description);
View Full Code Here

TOP

Related Classes of org.jclouds.fujitsu.fgcp.domain.DiskImage.Builder

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.