public boolean equals()

in bindings/servicemix-http/src/main/java/org/apache/servicemix/http/SslParameters.java [290:307]


    public boolean equals(Object o) {
        if (o == this) {
            return true;
        }
        if (!(o instanceof SslParameters)) {
            return false;
        }
        SslParameters s = (SslParameters) o;
        return managed == s.managed && eq(keyAlias, s.keyAlias)
                        && eq(keyManagerFactoryAlgorithm, s.keyManagerFactoryAlgorithm)
                        && eq(trustManagerFactoryAlgorithm, s.trustManagerFactoryAlgorithm)
                        && eq(keyPassword, s.keyPassword) && eq(keyStore, s.keyStore)
                        && eq(keyStorePassword, s.keyStorePassword) && eq(keyStoreType, s.keyStoreType)
                        && needClientAuth == s.needClientAuth && eq(protocol, s.protocol)
                        && eq(trustStore, s.trustStore) && eq(trustStorePassword, s.trustStorePassword)
                        && eq(trustStoreType, s.trustStoreType) && wantClientAuth == s.wantClientAuth;

    }