in server/data/data-ldap/src/main/java/org/apache/james/user/ldap/LdapRepositoryConfiguration.java [416:438]
public final boolean equals(Object o) {
if (o instanceof LdapRepositoryConfiguration) {
LdapRepositoryConfiguration that = (LdapRepositoryConfiguration) o;
return Objects.equals(this.connectionTimeout, that.connectionTimeout)
&& Objects.equals(this.readTimeout, that.readTimeout)
&& Objects.equals(this.supportsVirtualHosting, that.supportsVirtualHosting)
&& Objects.equals(this.ldapHosts, that.ldapHosts)
&& Objects.equals(this.principal, that.principal)
&& Objects.equals(this.credentials, that.credentials)
&& Objects.equals(this.userBase, that.userBase)
&& Objects.equals(this.userIdAttribute, that.userIdAttribute)
&& Objects.equals(this.resolveLocalPartAttribute, that.resolveLocalPartAttribute)
&& Objects.equals(this.userObjectClass, that.userObjectClass)
&& Objects.equals(this.restriction, that.restriction)
&& Objects.equals(this.filter, that.filter)
&& Objects.equals(this.poolSize, that.poolSize)
&& Objects.equals(this.administratorId, that.administratorId)
&& Objects.equals(this.trustAllCerts, that.trustAllCerts)
&& Objects.equals(this.perDomainBaseDN, that.perDomainBaseDN);
}
return false;
}