> +
> +@Path("servers")
> +@RequestFilters(AuthenticateRequest.class)
> +public interface ServerApi extends Closeable {
> +
> + @Named("servers:list")
> + @GET
> + @ResponseParser(ServerApi.ServerListParser.class)
> + @Fallback(Fallbacks.EmptyListOnNotFoundOr404.class)
> + List<Server> getList();
> +
> + @Named("servers:list")
> + @GET
> + @ResponseParser(ServerApi.ServerListParser.class)
> + @Fallback(Fallbacks.EmptyListOnNotFoundOr404.class)
> + List<Server> getList(GenericQueryOptions options);
Rename these method to just `list`.
---
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/275/files/0767d011a984011133c9e34b3389b449ca0756cd#r68668711