public boolean equals()

in apis/openstack-neutron/src/main/java/org/jclouds/openstack/neutron/v2/domain/Network.java [325:351]


   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.id, that.id)
            && Objects.equal(this.status, that.status)
            && Objects.equal(this.subnets, that.subnets)
            && Objects.equal(this.name, that.name)
            && Objects.equal(this.adminStateUp, that.adminStateUp)
            && Objects.equal(this.shared, that.shared)
            && Objects.equal(this.tenantId, that.tenantId)
            && Objects.equal(this.availabilityZone, that.availabilityZone)
            && Objects.equal(this.networkType, that.networkType)
            && Objects.equal(this.physicalNetworkName, that.physicalNetworkName)
            && Objects.equal(this.segmentationId, that.segmentationId)
            && Objects.equal(this.external, that.external)
            && Objects.equal(this.portSecurity, that.portSecurity)
            && Objects.equal(this.profileId, that.profileId)
            && Objects.equal(this.multicastIp, that.multicastIp)
            && Objects.equal(this.segmentAdd, that.segmentAdd)
            && Objects.equal(this.segmentDel, that.segmentDel)
            && Objects.equal(this.memberSegments, that.memberSegments)
            && Objects.equal(this.segments, that.segments)
            && Objects.equal(this.networkFlavor, that.networkFlavor);
   }