Package org.jclouds.softlayer.domain

Examples of org.jclouds.softlayer.domain.SoftwareDescription


      }
      return result;
   }

   private OperatingSystem getOperatingSystem(Map.Entry<String, SoftwareDescription> entry) {
      SoftwareDescription softwareDescription = entry.getValue();
      if (isOperatingSystem(softwareDescription)) {
         String uuid = entry.getKey();
         return OperatingSystem.builder()
                 .id(uuid)
                 .softwareLicense(SoftwareLicense.builder().softwareDescription(softwareDescription).build())
                 .operatingSystemReferenceCode(softwareDescription.getReferenceCode())
                 .build();
      }
      return null;
   }
View Full Code Here

TOP

Related Classes of org.jclouds.softlayer.domain.SoftwareDescription

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.