> +
> +/**
> + * Provides access to Flavor features.
> + */
> +@Beta
> +@RequestFilters(AuthenticateRequest.class)
> +@Consumes(MediaType.APPLICATION_JSON)
> +@Endpoint(CDN.class)
> +@Path("/flavors")
> +public interface FlavorApi {
> +
> + @Named("flavor:list")
> + @GET
> + @SelectJson("flavors")
> + @Fallback(EmptyFluentIterableOnNotFoundOr404.class)
> + FluentIterable<Flavor> list();
Great! I completely agree with using `List<T>` in all of the APIs going
forward. :+1:
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/176/files#r23394809