Move LdapUserSearch into main provider package and separate out its current implementation as it may be used for more than authentication.
This commit is contained in:
+1
-1
@@ -13,7 +13,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.acegisecurity.providers.ldap.authenticator;
|
||||
package org.acegisecurity.providers.ldap;
|
||||
|
||||
import org.acegisecurity.providers.ldap.LdapUserInfo;
|
||||
|
||||
+1
@@ -17,6 +17,7 @@ package org.acegisecurity.providers.ldap.authenticator;
|
||||
|
||||
import org.acegisecurity.providers.ldap.LdapAuthenticator;
|
||||
import org.acegisecurity.providers.ldap.InitialDirContextFactory;
|
||||
import org.acegisecurity.providers.ldap.LdapUserSearch;
|
||||
import org.springframework.beans.factory.InitializingBean;
|
||||
import org.springframework.util.Assert;
|
||||
|
||||
|
||||
+1
-1
@@ -13,7 +13,7 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.acegisecurity.providers.ldap.authenticator;
|
||||
package org.acegisecurity.providers.ldap.search;
|
||||
|
||||
import org.acegisecurity.providers.ldap.*;
|
||||
import org.acegisecurity.userdetails.UsernameNotFoundException;
|
||||
@@ -1,6 +1,7 @@
|
||||
package org.acegisecurity.providers.ldap.authenticator;
|
||||
|
||||
import org.acegisecurity.providers.ldap.LdapUserInfo;
|
||||
import org.acegisecurity.providers.ldap.LdapUserSearch;
|
||||
|
||||
/**
|
||||
* @author Luke Taylor
|
||||
|
||||
+2
-1
@@ -1,8 +1,9 @@
|
||||
package org.acegisecurity.providers.ldap.authenticator;
|
||||
package org.acegisecurity.providers.ldap.search;
|
||||
|
||||
import org.acegisecurity.providers.ldap.AbstractLdapServerTestCase;
|
||||
import org.acegisecurity.providers.ldap.DefaultInitialDirContextFactory;
|
||||
import org.acegisecurity.providers.ldap.LdapUserInfo;
|
||||
import org.acegisecurity.providers.ldap.search.FilterBasedLdapUserSearch;
|
||||
import org.acegisecurity.userdetails.UsernameNotFoundException;
|
||||
import org.acegisecurity.BadCredentialsException;
|
||||
|
||||
Reference in New Issue
Block a user