> +      BulkSubnet that = BulkSubnet.class.cast(obj);
> +      return Objects.equal(this.name, that.name)
> +         && Objects.equal(this.networkId, that.networkId)
> +         && Objects.equal(this.gatewayIp, that.gatewayIp)
> +         && Objects.equal(this.ipVersion, that.ipVersion)
> +         && Objects.equal(this.cidr, that.cidr)
> +         && Objects.equal(this.allocationPools, that.allocationPools)
> +         && Objects.equal(this.enableDhcp, that.enableDhcp)
> +         && Objects.equal(this.dnsNameServers, that.dnsNameServers)
> +         && Objects.equal(this.hostRoutes, that.hostRoutes);
> +   }
> +
> +   protected Objects.ToStringHelper string() {
> +      return Objects.toStringHelper(this)
> +         .add("name", name).add("networkId", networkId).add("gatewayIp", 
> gatewayIp).add("ipVersion", ipVersion)
> +         .add("cidr", cidr).add("enableDhcp", enableDhcp);

Is there a reason that allocationPools, dnsNameServers, and hostRoutes are 
missing here?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-openstack/pull/23/files#r6065865

Reply via email to