>
> @Path("/snapshots")
> @RequestFilters(BasicAuthentication.class)
> public interface SnapshotApi extends Closeable {
>
> + @Named("snapshot:list")
> + @GET
> + @SelectJson("items")
> + @Fallback(EmptyListOnNotFoundOr404.class)
> + List<Snapshot> getList();
I've just noticed this pattern. In other jclouds APIs, the common name for list
methods is just `list` (instead of getList). Mind doing the change?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/244/files#r55018368