in rackspace-cloudbigdata/src/main/java/org/jclouds/rackspace/cloudbigdata/v1/domain/ProfileSSHKey.java [63:69]
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null || getClass() != obj.getClass()) return false;
ProfileSSHKey that = ProfileSSHKey.class.cast(obj);
return Objects.equal(this.name, that.name) &&
Objects.equal(this.publicKey, that.publicKey);
}