HttpServletRequest
which requires authentication.See: Description
Interface | Description |
---|---|
RequestCache |
Implements "saved request" logic, allowing a single request to be retrieved and restarted after redirecting to
an authentication mechanism.
|
SavedRequest |
Encapsulates the functionality required of a cached request for both an authentication mechanism (typically
form-based login) to redirect to the original URL and for a RequestCache to build a wrapped request,
reproducing the original request data.
|
Class | Description |
---|---|
DefaultSavedRequest |
Represents central information from a
HttpServletRequest . |
Enumerator<T> |
Adapter that wraps an
Enumeration around a Java 2 collection Iterator . |
FastHttpDateFormat |
Utility class to generate HTTP dates.
|
HttpSessionRequestCache |
RequestCache which stores the SavedRequest in the HttpSession. |
NullRequestCache |
Null implementation of RequestCache.
|
RequestCacheAwareFilter |
Responsible for reconstituting the saved request if one is cached and it matches the current request.
|
SavedCookie |
Stores off the values of a cookie in a serializable holder
|
HttpServletRequest
which requires authentication. While the user is
logging in, the request is cached (using the RequestCache implementation) by the ExceptionTranslationFilter.
Once the user has been authenticated, the original request is restored following a redirect to a matching URL, and
the RequestCache
is queried to obtain the original (matching) request.