in rackspace-cloudbigdata/src/main/java/org/jclouds/rackspace/cloudbigdata/v1/domain/Profile.java [77:85]
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null || getClass() != obj.getClass()) return false;
Profile that = Profile.class.cast(obj);
return Objects.equal(this.userId, that.userId) &&
Objects.equal(this.tenantId, that.tenantId) &&
Objects.equal(this.links, that.links) &&
super.equals(obj);
}