in rackspace-cloudbigdata/src/main/java/org/jclouds/rackspace/cloudbigdata/v1/domain/Cluster.java [121:133]
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null || getClass() != obj.getClass()) return false;
Cluster that = Cluster.class.cast(obj);
return Objects.equal(this.id, that.id) &&
Objects.equal(this.created, that.created) &&
Objects.equal(this.updated, that.updated) &&
Objects.equal(this.postInitScriptStatus, that.postInitScriptStatus) &&
Objects.equal(this.progress, that.progress) &&
Objects.equal(this.status, that.status) &&
Objects.equal(this.links, that.links) &&
super.equals(obj);
}