> +/**
> + * @author Inbar Stolberg
> + */
> +public class ZoneState {
> +
> + private final Boolean isAvailable;
> +
> + @ConstructorProperties({
> + "available"
> + })
> + protected ZoneState(Boolean isAvailable) {
> + this.isAvailable = isAvailable;
> + }
> +
> + public Boolean isAvailable() {
> + return this.isAvailable;fixed --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/179/files#r6992686
