in rackspace-autoscale/src/main/java/org/jclouds/rackspace/autoscale/v1/domain/GroupConfiguration.java [109:118]
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null || getClass() != obj.getClass()) return false;
GroupConfiguration that = GroupConfiguration.class.cast(obj);
return Objects.equal(this.name, that.name) &&
Objects.equal(this.cooldown, that.cooldown) &&
Objects.equal(this.minEntities, that.minEntities) &&
Objects.equal(this.maxEntities, that.maxEntities) &&
Objects.equal(this.metadata, that.metadata);
}