> +
> +/**
> + * @author Inbar Stolberg
> + */
> +public class ZoneState {
> +
> + private final boolean isAvailable;
> +
> + @ConstructorProperties({
> + "available"
> + })
> + protected ZoneState(Boolean isAvailable) {
> + this.isAvailable = isAvailable;
> + }
> +
> + public boolean isAvailable() {
To be compatible with JavaBeans conventions (jclouds is not terribly strict
about that, though), the property itself should then be called `available`, not
`isAvailable`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/179/files#r6996603