Class Http403ForbiddenEntryPoint
- java.lang.Object
- 
- org.springframework.security.web.authentication.Http403ForbiddenEntryPoint
 
- 
- All Implemented Interfaces:
- AuthenticationEntryPoint
 
 public class Http403ForbiddenEntryPoint extends java.lang.Object implements AuthenticationEntryPoint In the pre-authenticated authentication case (unlike CAS, for example) the user will already have been identified through some external mechanism and a secure context established by the time the security-enforcement filter is invoked. 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 user is rejected by the AbstractPreAuthenticatedProcessingFilter, resulting in a null authentication. The commencemethod will always return anHttpServletResponse.SC_FORBIDDEN(403 error).- Since:
- 2.0
- See Also:
- ExceptionTranslationFilter
 
- 
- 
Constructor SummaryConstructors Constructor Description Http403ForbiddenEntryPoint()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcommence(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, AuthenticationException arg2)Always returns a 403 error code to the client.
 
- 
- 
- 
Method Detail- 
commencepublic void commence(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, AuthenticationException arg2) throws java.io.IOExceptionAlways returns a 403 error code to the client.- Specified by:
- commencein interface- AuthenticationEntryPoint
- Parameters:
- request- that resulted in an- AuthenticationException
- response- so that the user agent can begin authentication
- arg2- that caused the invocation
- Throws:
- java.io.IOException
 
 
- 
 
-