> +@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);
> +
> + @Named("servers:Flavours:list")
Why Flavours with a capital letter? Follow the same naming in all methods.
---
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#r68669532