> + */
> +package org.jclouds.openstack.nova.v2_0.domain.zonescoped;
> +
> +import com.google.common.base.Objects;
> +import java.beans.ConstructorProperties;
> +
> +/**
> + * @author Inbar Stolberg
> + */
> +public class AvailabilityZone {
> +
> + private final String name;
> + private final ZoneState zoneState;
> +
> + @ConstructorProperties({
> + "zoneName" , "zoneState"
from what i got from @everett-toews (in a different PR) if the parameter and
the value in the @ConstructorProperties are the same then i can remove
@ConstructorProperties entirely (just tested in live test to make sure and this
seems to work fine..)
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/179/files#r6997584