Interface SavedRequest
- All Superinterfaces:
 Serializable
- All Known Implementing Classes:
 DefaultSavedRequest,SimpleSavedRequest
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.
- Since:
 - 3.0
 
- 
Method Summary
Modifier and TypeMethodDescriptionList<jakarta.servlet.http.Cookie>getHeaderValues(String name) String @Nullable []getParameterValues(String name)  
- 
Method Details
- 
getRedirectUrl
String getRedirectUrl()- Returns:
 - the URL for the saved request, allowing a redirect to be performed.
 
 - 
getCookies
List<jakarta.servlet.http.Cookie> getCookies() - 
getMethod
String getMethod() - 
getHeaderValues
 - 
getHeaderNames
Collection<String> getHeaderNames() - 
getLocales
 - 
getParameterValues
 - 
getParameterMap
 
 -