public boolean equals()

in rackspace-autoscale/src/main/java/org/jclouds/rackspace/autoscale/v1/domain/GroupState.java [125:136]


   public boolean equals(Object obj) {
      if (this == obj)
         return true;
      if (obj == null || getClass() != obj.getClass())
         return false;
      GroupState that = GroupState.class.cast(obj);
      return Objects.equal(this.id, that.id) && Objects.equal(this.links, that.links)
            && Objects.equal(this.activeCapacity, that.activeCapacity)
            && Objects.equal(this.pendingCapacity, that.pendingCapacity)
            && Objects.equal(this.desiredCapacity, that.desiredCapacity) && Objects.equal(this.paused, that.paused)
            && Objects.equal(this.groupInstances, that.groupInstances);
   }