in elb/src/main/java/org/jclouds/elb/domain/Policy.java [133:142]
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
Policy other = (Policy) obj;
return Objects.equal(this.name, other.name) && Objects.equal(this.typeName, other.typeName);
}