> + && 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 ToStringHelper string() {
> + return super.string()
> + .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#r6065935