> public interface SnapshotApi {
> /**
> * Returns a summary list of Snapshots.
> *
> * @return The list of Snapshots
> */
> + @Named("snapshot:list")
> + @GET
> + @Path("/snapshots")
> + @SelectJson("snapshots")
> + @Consumes(MediaType.APPLICATION_JSON)
> + @Fallback(EmptyFluentIterableOnNotFoundOr404.class)
> FluentIterable<? extends Snapshot> list();
I can strip that out on the next PR I submit for Nova related changes. ;)
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/29/files#r4547096