Commit f8368ec8 authored by Dustin Jenkins's avatar Dustin Jenkins
Browse files

Story 1736: Remove cannonization and refactor PUT.

parent 48d6dd15
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -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
+7 −0
Original line number Diff line number Diff line
# 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