Package org.jclouds.representations

Examples of org.jclouds.representations.ApiMetadata$Builder


   @Test
   void testConversion() {
      assertNull(ToApiMetadata.INSTANCE.apply(null));
      org.jclouds.apis.ApiMetadata stub = Apis.withId("stub");
      assertNotNull(stub);
      ApiMetadata dto = ToApiMetadata.INSTANCE.apply(stub);
      assertNotNull(dto);
      assertEquals("stub", dto.getId());
   }
View Full Code Here

TOP

Related Classes of org.jclouds.representations.ApiMetadata$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.