in openstack-glance/src/main/java/org/jclouds/openstack/glance/v1_0/domain/ImageDetails.java [261:275]
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null || getClass() != obj.getClass()) return false;
ImageDetails that = ImageDetails.class.cast(obj);
return super.equals(that) && Objects.equal(this.minDisk, that.minDisk)
&& Objects.equal(this.minRam, that.minRam)
&& Objects.equal(this.location, that.location)
&& Objects.equal(this.owner, that.owner)
&& Objects.equal(this.updatedAt, that.updatedAt)
&& Objects.equal(this.createdAt, that.createdAt)
&& Objects.equal(this.deletedAt, that.deletedAt)
&& Objects.equal(this.status, that.status)
&& Objects.equal(this.isPublic, that.isPublic)
&& Objects.equal(this.properties, that.properties);
}