org.acegisecurity.ui |
Authentication processing mechanisms, which respond to the submission of authentication
credentials using various protocols (eg BASIC, CAS, form login etc).
|
Java Source File Name | Type | Comment |
AbstractProcessingFilter.java | Class | Abstract processor of browser-based HTTP-based authentication requests.
This filter is responsible for processing authentication requests. |
AbstractProcessingFilterTests.java | Class | Tests
AbstractProcessingFilter . |
AccessDeniedHandler.java | Interface | Used by
ExceptionTranslationFilter to handle an
AccessDeniedException . |
AccessDeniedHandlerImpl.java | Class | Base implementation of
AccessDeniedHandler . This implementation sends a 403 (SC_FORBIDDEN) HTTP error
code. |
AuthenticationDetailsSource.java | Interface | Provides a
org.acegisecurity.Authentication.getDetails object for
a given web request. |
AuthenticationDetailsSourceImpl.java | Class | Base implementation of
AuthenticationDetailsSource . By default will create an instance of
WebAuthenticationDetails . |
AuthenticationEntryPoint.java | Interface | Used by
ExceptionTranslationFilter to commence an authentication
scheme. |
ExceptionTranslationFilter.java | Class | Handles any AccessDeniedException and AuthenticationException thrown within the
filter chain.
This filter is necessary because it provides the bridge between Java exceptions and HTTP responses.
It is solely concerned with maintaining the user interface. |
ExceptionTranslationFilterTests.java | Class | Tests
ExceptionTranslationFilter . |
WebAuthenticationDetails.java | Class | A holder of selected HTTP details related to a web authentication request. |