> + */
> +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"
> np i will change variable name from name to zoneName (and will remove the
> constructor since there is no need for it if the parameters
> are 1:1 as in openstack
Before we do this, might be good to get something like @everett-toews or @nacx
to look at this, since they know more about what `@ConstructorProperties`
actually does here (after all, the annotation may be being used for some
serialization stuff) than I do ;-)
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/179/files#r6997171