public boolean equals()

in rackspace-autoscale/src/main/java/org/jclouds/rackspace/autoscale/v1/domain/Group.java [99:108]


   public boolean equals(Object obj) {
      if (this == obj) return true;
      if (obj == null || getClass() != obj.getClass()) return false;
      Group that = Group.class.cast(obj);
      return Objects.equal(this.id, that.id) &&
            Objects.equal(this.links, that.links) &&
            Objects.equal(this.scalingPolicy, that.scalingPolicy) &&
            Objects.equal(this.groupConfiguration, that.groupConfiguration) &&
            Objects.equal(this.launchConfiguration, that.launchConfiguration);
   }