public abstract static class WebRequestContext.ImplicitObjectELResolver.ImplicitObjects<Context> extends Object
This class is used to generate the implicit Map and List objects that wrap various elements of the RequestContext. It also returns the correct implicit object for decode given implicit object name.
| 限定符 | 构造器和说明 |
|---|---|
protected |
ImplicitObjects(Context context) |
| 限定符和类型 | 方法和说明 |
|---|---|
protected Map<String,Object> |
createApplicationScopeMap(Context context) |
protected abstract Map<String,Object> |
createContextScopeMap(Context context) |
Map<String,javax.servlet.http.Cookie> |
createCookieMap(Context context)
Creates the Map that maps cookie name to the first matching
Cookie in request.getCookies().
|
Map<?,?> |
createHeaderMap(Context context)
Creates the Map that maps header name to single header
value.
|
Map<?,?> |
createHeadersMap(Context context)
Creates the Map that maps header name to an array of header
values.
|
Map<?,?> |
createInitParamMap(Context pContext)
Creates the Map that maps init parameter name to single init
parameter value.
|
Map<?,?> |
createParamMap(Context context)
Creates the Map that maps parameter name to single parameter
value.
|
Map<?,?> |
createParamsMap(Context context)
Creates the Map that maps parameter name to an array of parameter
values.
|
protected Map<String,Object> |
createRequestScopeMap(Context context) |
protected Map<String,Object> |
createSessionScopeMap(Context context) |
Map<?,?> |
getApplicationScopeMap()
Returns the Map that "wraps" application-scoped attributes
|
Map<?,?> |
getContextScopeMap() |
Map<?,?> |
getCookieMap()
Returns the Map that maps cookie name to the first matching
Cookie in request.getCookies().
|
Map<?,?> |
getHeaderMap()
Returns the Map that maps header name to decode single header
values.
|
Map<?,?> |
getHeadersMap()
Returns the Map that maps header name to an array of header
values.
|
Map<?,?> |
getParamMap()
Returns the Map that maps parameter name to decode single parameter
values.
|
Map |
getParamsMap()
Returns the Map that maps parameter name to an array of parameter
values.
|
protected abstract javax.servlet.http.HttpServletRequest |
getRequest(Context context) |
Map<?,?> |
getRequestScopeMap()
Returns the Map that "wraps" request-scoped attributes
|
protected abstract javax.servlet.ServletContext |
getServletContext(Context context) |
Map<?,?> |
getSessionScopeMap()
Returns the Map that "wraps" session-scoped attributes
|
protected ImplicitObjects(Context context)
public Map<?,?> getContextScopeMap()
public Map<?,?> getRequestScopeMap()
public Map<?,?> getSessionScopeMap()
public Map<?,?> getApplicationScopeMap()
public Map<?,?> getParamMap()
public Map getParamsMap()
public Map<?,?> getHeaderMap()
public Map<?,?> getHeadersMap()
public Map<?,?> getCookieMap()
protected abstract javax.servlet.http.HttpServletRequest getRequest(Context context)
protected abstract javax.servlet.ServletContext getServletContext(Context context)
public Map<?,?> createParamMap(Context context)
public Map<?,?> createParamsMap(Context context)
public Map<?,?> createHeaderMap(Context context)
public Map<?,?> createHeadersMap(Context context)
public Map<?,?> createInitParamMap(Context pContext)
Copyright © 2020 nomou. All rights reserved.