> +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);
I'd leave it as a Set if for no other reason than we use Sets everywhere else
in CloudStack.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/578/files#r19159039