> + * @see <a
> + *      href="">
> + *      CDN Container API</a>
> + * 
> + * @author Jeremy Daggett
> + */
> +public class CDNContainer implements Comparable<CDNContainer> {
> +
> +   private String name;
> +   private boolean enabled;
> +   private boolean logRetention;
> +   private int ttl;
> +   private URI uri;
> +   private URI sslUri;
> +   private URI streamingUri;
> +   private URI iosUri;

Annotate the fields (with `@Named` or `@SerializedName`) according to the json 
names in the `@ConstructorProperties` annotation for consistency between 
serialization and deserialization.

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

Reply via email to