public class X509ProcessingFilterEntryPoint extends java.lang.Object implements AuthenticationEntryPoint
Therefore this class isn't actually responsible for the commencement of authentication, as it is in the case of other providers. It will be called if the certificate was rejected by Spring Security's X509AuthenticationProvider, resulting in a null authentication.
Thecommence
method will always return an
HttpServletResponse.SC_FORBIDDEN
(403 error).ExceptionTranslationFilter
Constructor and Description |
---|
X509ProcessingFilterEntryPoint()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
void |
commence(javax.servlet.ServletRequest request,
javax.servlet.ServletResponse response,
AuthenticationException authException)
Deprecated.
Returns a 403 error code to the client.
|
public X509ProcessingFilterEntryPoint()
public void commence(javax.servlet.ServletRequest request, javax.servlet.ServletResponse response, AuthenticationException authException) throws java.io.IOException, javax.servlet.ServletException
commence
in interface AuthenticationEntryPoint
request
- DOCUMENT ME!response
- DOCUMENT ME!authException
- DOCUMENT ME!java.io.IOException
- DOCUMENT ME!javax.servlet.ServletException
- DOCUMENT ME!