1
0
mirror of synced 2026-08-03 16:56:56 +00:00

SEC-8: Renamed NtlmAwareLdapAuthenticatorImpl to NtlmAwareLdapAuthenticator as there is no longer a corresponding interface.

This commit is contained in:
Luke Taylor
2007-09-19 10:49:40 +00:00
parent 5fe6bfa59b
commit 3c9008ea06
@@ -23,15 +23,15 @@ import org.springframework.ldap.NameNotFoundException;
* @author sylvain.mougenot
*
*/
public class NtlmAwareLdapAuthenticatorImpl extends BindAuthenticator {
public class NtlmAwareLdapAuthenticator extends BindAuthenticator {
//~ Static fields/initializers =====================================================================================
private static final Log logger = LogFactory.getLog(NtlmAwareLdapAuthenticatorImpl.class);
private static final Log logger = LogFactory.getLog(NtlmAwareLdapAuthenticator.class);
//~ Constructors ===================================================================================================
public NtlmAwareLdapAuthenticatorImpl(InitialDirContextFactory initialDirContextFactory) {
public NtlmAwareLdapAuthenticator(InitialDirContextFactory initialDirContextFactory) {
super(initialDirContextFactory);
}