> +import java.util.List;
> +
> +import org.jclouds.javax.annotation.Nullable;
> +import org.jclouds.json.SerializedNames;
> +
> +import com.google.auto.value.AutoValue;
> +import com.google.common.collect.ImmutableList;
> +
> +/**
> + * Representation of an OpenStack Poppy Origin.
> + */
> +@AutoValue
> +public abstract class Origin {
> + public abstract String getOrigin();
> + @Nullable public abstract int getPort();
> + @Nullable public abstract boolean getSslEnabled();
Primitive types can't be null.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/179/files#r25981795