Browse Source

(Currently functionless) entry point implementation for X.509

Luke Taylor 20 years ago
parent
commit
08dbf66880

+ 27 - 0
core/src/main/java/org/acegisecurity/ui/x509/X509ProcessingFilterEntryPoint.java

@@ -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 + "]");
+    }
+}