Skip to content
Snippets Groups Projects
Commit f8368ec8 authored by Dustin Jenkins's avatar Dustin Jenkins
Browse files

Story 1736: Remove cannonization and refactor PUT.

parent 48d6dd15
No related branches found
No related tags found
No related merge requests found
......@@ -407,9 +407,8 @@ public class LdapUserDAO<T extends Principal> extends LdapDAO
.getClass());
}
searchField = "(" + searchField + "=" +
AuthenticationUtil.canonizeDistinguishedName(
user.getUserID().getName()) + ")";
searchField = "(" + searchField + "=" + user.getUserID().getName()
+ ")";
SearchResultEntry searchResult = null;
try
......
# This are the configuration fields required by the Ldap ldap-dao unit tests
server = proc5-03.cadc.dao.nrc.ca
port = 636
proxyUser = webproxy
usersDn = ou=Users,ou=ds,dc=canfar,dc=net
groupsDn = ou=Groups,ou=ds,dc=canfar,dc=net
adminGroupsDn = ou=adminGroups,ou=ds,dc=canfar,dc=net
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment