rwinch / spring-ldap

Apache License 2.0
0 stars 0 forks source link

LDAP-260: LdapRdn should disregard order in equals and compareTo #53

Closed rwinch closed 8 years ago

rwinch commented 11 years ago

Original Reporter: marthursson Environment: Not Specified Version: Not Specified Migrated From: https://jira.spring.io//browse/LDAP-260 The order of the individual Rdn components should be disregarding when comparing two Rdns, e.g. the following should be valid: {code} assertEquals(new LdapRdn("cn=john doe+sn=doe"), new LdapRdn("sn=doe+cn=john doe")); {code}