(Currently functionless) entry point implementation for X.509

This commit is contained in:
Luke Taylor 2005-03-10 03:21:25 +00:00
parent aabcef4c69
commit 08dbf66880
1 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,27 @@
package net.sf.acegisecurity.ui.x509;
import net.sf.acegisecurity.intercept.web.AuthenticationEntryPoint;
import net.sf.acegisecurity.AuthenticationException;
import net.sf.acegisecurity.providers.x509.X509AuthenticationProvider;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.ServletException;
import java.io.IOException;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
/**
*
* @author Luke Taylor
*/
public class X509ProcessingFilterEntryPoint implements AuthenticationEntryPoint {
//~ Static fields/initializers =============================================
private static final Log logger = LogFactory.getLog(X509ProcessingFilterEntryPoint.class);
public void commence(ServletRequest request, ServletResponse response, AuthenticationException authException) throws IOException, ServletException {
logger.debug("commence called: request = [" + request +"] exception ["+ authException + "]");
}
}