in elb/src/main/java/org/jclouds/elb/domain/HealthCheck.java [200:212]
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
HealthCheck other = (HealthCheck) obj;
return Objects.equal(this.healthyThreshold, other.healthyThreshold)
&& Objects.equal(this.interval, other.interval) && Objects.equal(this.target, other.target)
&& Objects.equal(this.timeout, other.timeout)
&& Objects.equal(this.unhealthyThreshold, other.unhealthyThreshold);
}