> +
> + return Objects.equal(this.id, that.id) &&
> + Objects.equal(this.tenantId, that.tenantId) &&
> + Objects.equal(this.name, that.name) &&
> + Objects.equal(this.description, that.description) &&
> + Objects.equal(this.securityGroupRules, that.securityGroupRules);
> + }
> +
> + @Override
> + public int hashCode() {
> + return Objects.hashCode(id, tenantId, name, description,
> securityGroupRules);
> + }
> +
> + @Override
> + public String toString() {
> + return MoreObjects.toStringHelper(this)
:+1: I prefer just using this form over the other `string().toString()`. Do you
plan to do that with the other Domain classes as well?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/132/files#r16568000