trevorflanagan commented on this pull request.


> +
+   @Named("network:vlan")
+   @GET
+   @Path("/vlan")
+   @Transform(ParseVlans.ToPagedIterable.class)
+   @ResponseParser(ParseVlans.class)
+   @Fallback(Fallbacks.EmptyPagedIterableOnNotFoundOr404.class)
+   PagedIterable<Vlan> listVlans(@QueryParam("networkDomainId") String 
networkDomainId);
+
+   @Named("network:listVlansWithNetworkDomainIdAndName")
+   @GET
+   @Path("/vlan")
+   @Transform(ParseVlans.ToPagedIterable.class)
+   @ResponseParser(ParseVlans.class)
+   @Fallback(Fallbacks.EmptyPagedIterableOnNotFoundOr404.class)
+   PagedIterable<Vlan> 
listVlansWithNetworkDomainIdAndName(@QueryParam("networkDomainId") String 
networkDomainId,

I have removed this method. It's not essential on the API.

-- 
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_r123011938

Reply via email to