|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface WebRequest
Generic interface for a web request. Mainly intended for generic web request interceptors, giving them access to general request metadata, not for actual handling of the request.
WebRequestInterceptor
Field Summary |
---|
Fields inherited from interface org.springframework.web.context.request.RequestAttributes |
---|
SCOPE_GLOBAL_SESSION, SCOPE_REQUEST, SCOPE_SESSION |
Method Summary | |
---|---|
Locale |
getLocale()
Return the primary Locale for this request. |
String |
getParameter(String paramName)
Return the request parameter of the given name, or null if none. |
Map |
getParameterMap()
Return a immutable Map of the request parameters, with parameter names as map keys and parameter values as map values. |
String[] |
getParameterValues(String paramName)
Return the request parameter values for the given parameter name, or null if none. |
Methods inherited from interface org.springframework.web.context.request.RequestAttributes |
---|
getAttribute, getSessionId, getSessionMutex, registerDestructionCallback, removeAttribute, setAttribute |
Method Detail |
---|
String getParameter(String paramName)
null
if none.
Retrieves the first parameter value in case of a multi-value parameter.
String[] getParameterValues(String paramName)
null
if none.
A single-value parameter will be exposed as an array with a single element.
Map getParameterMap()
A single-value parameter will be exposed as an array with a single element.
Locale getLocale()
|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |