> + @Override
> + public Builder toBuilder() {
> + return new Builder().fromApiMetadata(this);
> + }
> +
> + public PoppyApiMetadata() {
> + this(new Builder());
> + }
> +
> + protected PoppyApiMetadata(Builder builder) {
> + super(builder);
> + }
> +
> + public static Properties defaultProperties() {
> + Properties properties = BaseHttpApiMetadata.defaultProperties();
> + properties.setProperty(SERVICE_TYPE, "cdn");
Use the `ServiceType.CDN` constant here?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/176/files#r23364732