public boolean equals()

in elb/src/main/java/org/jclouds/elb/domain/Listener.java [197:209]


   public boolean equals(Object obj) {
      if (this == obj)
         return true;
      if (obj == null)
         return false;
      if (getClass() != obj.getClass())
         return false;
      Listener other = (Listener) obj;
      return Objects.equal(this.instancePort, other.instancePort)
               && Objects.equal(this.instanceProtocol, other.instanceProtocol) && Objects.equal(this.port, other.port)
               && Objects.equal(this.protocol, other.protocol)
               && Objects.equal(this.SSLCertificateId, other.SSLCertificateId);
   }