> +
> + 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)
Yes. In fact all the neutron domain classes should have this type of
implementation, and if not, will be fixed to.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/132/files#r16568491