> + */
> +@SkipEncoding({'/', '='})
> +@RequestFilters(AuthenticateRequest.class)
> +@Consumes(MediaType.APPLICATION_JSON)
> +@Path("/share-networks")
> +public interface ShareNetworkApi {
> +   /**
> +    * Returns a summary list of ShareNetworks.
> +    *
> +    * @return The list of ShareNetworks
> +    */
> +   @Named("shareNetwork:list")
> +   @GET
> +   @SelectJson("share_networks")
> +   @Fallback(EmptyFluentIterableOnNotFoundOr404.class)
> +   FluentIterable<? extends ShareNetwork> list();

? extends ... should not really be needed, with auto value we should have 
specific domain classes for everything., I think.

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/198/files#r35160708

Reply via email to