public class DefaultSavedRequest extends Object implements SavedRequest
HttpServletRequest
.
This class is used by AbstractAuthenticationProcessingFilter
and SavedRequestAwareWrapper
to
reproduce the request after successful authentication. An instance of this class is stored at the time of an
authentication exception by ExceptionTranslationFilter
.
IMPLEMENTATION NOTE: It is assumed that this object is accessed only from the context of a single thread, so no synchronization around internal collection classes is performed.
This class is based on code in Apache Tomcat.
Modifier and Type | Field and Description |
---|---|
protected static org.apache.commons.logging.Log |
logger |
Constructor and Description |
---|
DefaultSavedRequest(javax.servlet.http.HttpServletRequest request,
PortResolver portResolver) |
Modifier and Type | Method and Description |
---|---|
boolean |
doesRequestMatch(javax.servlet.http.HttpServletRequest request,
PortResolver portResolver)
Determines if the current request matches the
DefaultSavedRequest . |
String |
getContextPath() |
List<javax.servlet.http.Cookie> |
getCookies() |
Collection<String> |
getHeaderNames() |
List<String> |
getHeaderValues(String name) |
List<Locale> |
getLocales() |
String |
getMethod() |
Map<String,String[]> |
getParameterMap() |
Collection<String> |
getParameterNames() |
String[] |
getParameterValues(String name) |
String |
getPathInfo() |
String |
getQueryString() |
String |
getRedirectUrl()
Indicates the URL that the user agent used for this request.
|
String |
getRequestURI() |
String |
getRequestURL() |
String |
getScheme() |
String |
getServerName() |
int |
getServerPort() |
String |
getServletPath() |
String |
toString() |
public DefaultSavedRequest(javax.servlet.http.HttpServletRequest request, PortResolver portResolver)
public boolean doesRequestMatch(javax.servlet.http.HttpServletRequest request, PortResolver portResolver)
DefaultSavedRequest
.
All URL arguments are considered but not cookies, locales, headers or parameters.
request
- the actual request to be matched against this oneportResolver
- used to obtain the server port of the requestpublic String getContextPath()
public List<javax.servlet.http.Cookie> getCookies()
getCookies
in interface SavedRequest
public String getRedirectUrl()
getRedirectUrl
in interface SavedRequest
public Collection<String> getHeaderNames()
getHeaderNames
in interface SavedRequest
public List<String> getHeaderValues(String name)
getHeaderValues
in interface SavedRequest
public List<Locale> getLocales()
getLocales
in interface SavedRequest
public String getMethod()
getMethod
in interface SavedRequest
public Map<String,String[]> getParameterMap()
getParameterMap
in interface SavedRequest
public Collection<String> getParameterNames()
public String[] getParameterValues(String name)
getParameterValues
in interface SavedRequest
public String getPathInfo()
public String getQueryString()
public String getRequestURI()
public String getRequestURL()
public String getScheme()
public String getServerName()
public int getServerPort()
public String getServletPath()