Package org.jclouds.cloudstack.domain

Examples of org.jclouds.cloudstack.domain.OSType


   public void testListOSTypes() throws Exception {
      Set<OSType> response = client.getGuestOSApi().listOSTypes();
      assert null != response;
      assertTrue(response.size() >= 0);
      for (OSType type : response) {
         OSType newDetails = getOnlyElement(client.getGuestOSApi().listOSTypes(
               ListOSTypesOptions.Builder.id(type.getId())));
         assertEquals(type.getId(), newDetails.getId());
         checkOSType(type);
      }
   }
View Full Code Here

TOP

Related Classes of org.jclouds.cloudstack.domain.OSType

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.