> + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
> + * See the License for the specific language governing permissions and
> + * limitations under the License.
> + */
> +
> +package org.jclouds.openstack.poppy.v1.domain;
> +
> +/**
> + * Specifies the "Host" header type used to access the resources on the
> origin. Only "domain", "origin" or "custom" are currently allowed.
> + * If "custom" the header value must also be specified.
> + * Defaults to domain.
> + */
> +public enum HostHeaderType {
> + DOMAIN("domain"),
> + ORIGIN("origin"),
> + CUSTOM("custom");
Can we get rid of the name field? Just call `name().toLowerCase()` in the
`toString` method and use the `name()` method elsewhere?
---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/206/files/55c17a59c01a5d5a153faf13491ce7e2184ec697#r67959119