Package org.jclouds.cloudsigma2.functions

Examples of org.jclouds.cloudsigma2.functions.IPInfoToJsonTest


                  .build(),
            responseBuilder()
                  .payload(payloadFromResourceWithContentType("/vlan-single.json", MediaType.APPLICATION_JSON))
                  .build());

      VLANInfo result = api.getVLANInfo(uuid);
      assertNotNull(result);
   }
View Full Code Here


                  .build(),
            responseBuilder()
                  .payload(payloadFromResourceWithContentType("/vlan-single.json", MediaType.APPLICATION_JSON))
                  .build());

      VLANInfo result = api.editVLAN(uuid, new VLANInfo.Builder().meta(meta).build());
      assertNotNull(result);
   }
View Full Code Here

   @Test
   public void testEditVLAN() throws Exception {
      Map<String, String> meta = Maps.newHashMap();
      meta.put("test", "test data");

      VLANInfo vlanInfo = new VLANInfo.Builder()
            .meta(meta)
            .build();

      if (api.listVLANs().size() > 0) {
         checkVlAN(vlanInfo, api.editVLAN(api.listVLANs().concat().get(0).getUuid(), vlanInfo));
View Full Code Here

      @Override
      protected Function<Object, IterableWithMarker<IPInfo>> markerToNextForArgs(List<Object> args) {
         return new Function<Object, IterableWithMarker<IPInfo>>() {
            @Override
            public IterableWithMarker<IPInfo> apply(Object input) {
               PaginationOptions paginationOptions = PaginationOptions.class.cast(input);
               return api.listIPInfo(paginationOptions);
            }
         };
      }
View Full Code Here

      @Override
      protected Function<Object, IterableWithMarker<ServerInfo>> markerToNextForArgs(List<Object> args) {
         return new Function<Object, IterableWithMarker<ServerInfo>>() {
            @Override
            public IterableWithMarker<ServerInfo> apply(Object input) {
               PaginationOptions paginationOptions = PaginationOptions.class.cast(input);
               return api.listServersInfo(paginationOptions);
            }
         };
      }
View Full Code Here

      @Override
      protected Function<Object, IterableWithMarker<IP>> markerToNextForArgs(List<Object> args) {
         return new Function<Object, IterableWithMarker<IP>>() {
            @Override
            public IterableWithMarker<IP> apply(Object input) {
               PaginationOptions paginationOptions = PaginationOptions.class.cast(input);
               return api.listIPs(paginationOptions);
            }
         };
      }
View Full Code Here

      @Override
      protected Function<Object, IterableWithMarker<Tag>> markerToNextForArgs(List<Object> args) {
         return new Function<Object, IterableWithMarker<Tag>>() {
            @Override
            public IterableWithMarker<Tag> apply(Object input) {
               PaginationOptions paginationOptions = PaginationOptions.class.cast(input);
               return api.listTags(paginationOptions);
            }
         };
      }
View Full Code Here

      @Override
      protected Function<Object, IterableWithMarker<Tag>> markerToNextForArgs(List<Object> args) {
         return new Function<Object, IterableWithMarker<Tag>>() {
            @Override
            public IterableWithMarker<Tag> apply(Object input) {
               PaginationOptions paginationOptions = PaginationOptions.class.cast(input);
               return api.listTagsInfo(paginationOptions);
            }
         };
      }
View Full Code Here

      @Override
      protected Function<Object, IterableWithMarker<Subscription>> markerToNextForArgs(List<Object> args) {
         return new Function<Object, IterableWithMarker<Subscription>>() {
            @Override
            public IterableWithMarker<Subscription> apply(Object input) {
               PaginationOptions paginationOptions = PaginationOptions.class.cast(input);
               return api.listSubscriptions(paginationOptions);
            }
         };
      }
View Full Code Here

      @Override
      protected Function<Object, IterableWithMarker<VLANInfo>> markerToNextForArgs(List<Object> args) {
         return new Function<Object, IterableWithMarker<VLANInfo>>() {
            @Override
            public IterableWithMarker<VLANInfo> apply(Object input) {
               PaginationOptions paginationOptions = PaginationOptions.class.cast(input);
               return api.listVLANs(paginationOptions);
            }
         };
      }
View Full Code Here

TOP

Related Classes of org.jclouds.cloudsigma2.functions.IPInfoToJsonTest

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.