> +public interface TagApi {
> +
> +   /**
> +    * Lists tags
> +    * 
> +    * @param options
> +    *           if present, how to constrain the list.
> +    * @return tags matching query, or empty set, if no tags are found
> +    */
> +   @Named("listTags")
> +   @GET
> +   @QueryParams(keys = { "command", "listAll" }, values = { "listTags", 
> "true" })
> +   @SelectJson("tag")
> +   @Consumes(MediaType.APPLICATION_JSON)
> +   @Fallback(EmptySetOnNotFoundOr404.class)
> +   Set<Tag> listTags(ListTagsOptions... options);

Not sure how others feel, but I've been straying with the Set bias lately. Use 
List unless Set clears a concept.

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/578/files#r19128727

Reply via email to