trevorflanagan commented on this pull request.


> +
+   @Named("network:getVlan")
+   @GET
+   @Path("/vlan/{id}")
+   @Fallback(NullOnNotFoundOr404.class)
+   Vlan getVlan(@PathParam("id") String vlanId);
+
+   @Named("network:vlan")
+   @GET
+   @Path("/vlan")
+   @ResponseParser(ParseVlans.class)
+   @Fallback(Fallbacks.EmptyIterableWithMarkerOnNotFoundOr404.class)
+   PaginatedCollection<Vlan> listVlans(@QueryParam("networkDomainId") String 
networkDomainId,
+         PaginationOptions options);
+
+   @Named("network:vlan")

Done

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/389#discussion_r123011817

Reply via email to