> */
> - public String getStatus() {
> - return status;
> + @Override
> + public boolean equals(Object obj) {
> + if (this == obj) return true;
> + if (obj == null || getClass() != obj.getClass()) return false;
> + Disk that = Disk.class.cast(obj);
> + return equal(this.kind, that.kind)
> + && equal(this.name, that.name)
> + && equal(this.zone, that.zone);
`status` doesn't matter?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/16/files#r5362470