> +   public int hashCode() {
> +      return Objects.hashCode(networkUuid, portUuid, fixedIp);
> +   }
> +
> +   @Override
> +   public boolean equals(Object obj) {
> +      if (this == obj) return true;
> +      if (obj == null || getClass() != obj.getClass()) return false;
> +      Network that = Network.class.cast(obj);
> +      return Objects.equal(this.networkUuid, that.networkUuid) && 
> +            Objects.equal(this.portUuid, that.portUuid) &&
> +            Objects.equal(this.fixedIp, that.fixedIp);
> +   }
> +
> +   protected ToStringHelper string() {
> +      return Objects.toStringHelper(this)

Add `ignoreNullValues`?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/313/files#r10826312

Reply via email to