public boolean equals()

in software/webapp/src/main/java/org/apache/brooklyn/entity/proxy/ProxySslConfig.java [250:266]


    public boolean equals(Object obj) {
        if (obj == null)
            return false;
        if (getClass() != obj.getClass())
            return false;
        ProxySslConfig other = (ProxySslConfig) obj;

        return Objects.equal(certificateSourceUrl, other.certificateSourceUrl) &&
                Objects.equal(certificateDestination, other.certificateDestination) &&
                Objects.equal(keyDestination, other.keyDestination) &&
                Objects.equal(keySourceUrl, other.keySourceUrl) &&
                Objects.equal(clientCertificateSourceUrl, other.clientCertificateSourceUrl) &&
                Objects.equal(clientCertificateDestination, other.clientCertificateDestination) &&
                Objects.equal(verifyClient, other.verifyClient) &&
                Objects.equal(reuseSessions, other.reuseSessions) &&
                Objects.equal(targetIsSsl, other.targetIsSsl);
    }