edu.vt.middleware.ldap.auth.handler.AbstractAuthenticationHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vt-ldap Show documentation
Show all versions of vt-ldap Show documentation
Library for performing common LDAP operations
/*
$Id: AbstractAuthenticationHandler.java 1330 2010-05-23 22:10:53Z dfisher $
Copyright (C) 2003-2010 Virginia Tech.
All rights reserved.
SEE LICENSE FOR MORE INFORMATION
Author: Middleware Services
Email: [email protected]
Version: $Revision: 1330 $
Updated: $Date: 2010-05-23 18:10:53 -0400 (Sun, 23 May 2010) $
*/
package edu.vt.middleware.ldap.auth.handler;
import javax.naming.NamingException;
import edu.vt.middleware.ldap.auth.AuthenticatorConfig;
import edu.vt.middleware.ldap.handler.ConnectionHandler;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
/**
* AbstractAuthenticationHandler provides a base implementation for
* authentication handlers.
*
* @author Middleware Services
* @version $Revision: 1330 $
*/
public abstract class AbstractAuthenticationHandler
implements AuthenticationHandler
{
/** Log for this class. */
protected final Log logger = LogFactory.getLog(this.getClass());
/** Authenticator configuration. */
protected AuthenticatorConfig config;
/** {@inheritDoc} */
public void setAuthenticatorConfig(final AuthenticatorConfig ac)
{
this.config = ac;
}
/** {@inheritDoc} */
public abstract void authenticate(
final ConnectionHandler ch,
final AuthenticationCriteria ac)
throws NamingException;
/** {@inheritDoc} */
public abstract AuthenticationHandler newInstance();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy