> +
> +import java.beans.ConstructorProperties;
> +
> +import static com.google.common.base.Preconditions.checkNotNull;
> +
> +/**
> + * @author Inbar Stolberg
> + */
> +public class VolumeQuota {
> +
> + private final String id;
> + private final int volumes;
> + private final int gigabytes;
> + private final int snapshots;
> +
> + @ConstructorProperties({
When you're class fields match the names in the JSON perfectly, I don't think
you need @ConstructorProperties. Try removing it and see if everything still
works.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/178/files#r6974909