> + * Autoscale Group State. Contains information about a scaling group.
> + *
> + * @see Group
> + * @see GroupApi#listGroupStates()
> + * @see GroupApi#getState(String)
> + * @author Zack Shoylev
> + */
> +public class GroupState implements Comparable<GroupState> {
> + private final String id;
> + private final List<Link> links;
> + private final int activeCapacity;
> + private final int pendingCapacity;
> + private final int desiredCapacity;
> + private final boolean paused;
> + @SerializedName("active")
> + private final List<GroupInstance> groupInstances;
Does it make sense to change this to an `ImmutableList`?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/22/files#r6073749