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