>
> @Path("/snapshots")
> @RequestFilters(BasicAuthentication.class)
> public interface SnapshotApi extends Closeable {
>
> + @Named("snapshot:list")
> + @GET
> + @SelectJson("items")
> + @Fallback(EmptyListOnNotFoundOr404.class)
> + List<Snapshot> getList();
this should mean that all of the methods of all of the apis in profitbricks
rest should be updated to the convention format?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/244/files#r55205994