> + * 
> + * @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;
> +
> +   @ConstructorProperties({ "name", "cdn_enabled", "log_retention", "ttl", 
> "cdn_uri", "cdn_ssl_uri", "cdn_streaming_uri", "cdn_ios_uri"})
> +   public CDNContainer(String name, boolean enabled, boolean logRetention, 
> int ttl, URI uri, URI sslUri, URI streamingUri, URI iosUri) {

Add `checkNotNull` validations or annotate the fields as `@Nullable`

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

Reply via email to