> + *
> + * @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) {
ack - fixed
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/79/files#r9892470