public class HttpServletRequestParameterMap extends StringKeyedMapAdapter
Constructor and Description |
---|
HttpServletRequestParameterMap(javax.servlet.http.HttpServletRequest request)
Create a new map wrapping the parameters of given request.
|
Modifier and Type | Method and Description |
---|---|
protected java.lang.Object |
getAttribute(java.lang.String key)
Hook method that needs to be implemented by concrete subclasses.
|
protected java.util.Iterator |
getAttributeNames()
Hook method that needs to be implemented by concrete subclasses.
|
protected void |
removeAttribute(java.lang.String key)
Hook method that needs to be implemented by concrete subclasses.
|
protected void |
setAttribute(java.lang.String key,
java.lang.Object value)
Hook method that needs to be implemented by concrete subclasses.
|
clear, containsKey, containsValue, entrySet, get, isEmpty, keySet, put, putAll, remove, size, values
public HttpServletRequestParameterMap(javax.servlet.http.HttpServletRequest request)
protected java.lang.Object getAttribute(java.lang.String key)
StringKeyedMapAdapter
getAttribute
in class StringKeyedMapAdapter
key
- the key to lookupprotected void setAttribute(java.lang.String key, java.lang.Object value)
StringKeyedMapAdapter
setAttribute
in class StringKeyedMapAdapter
key
- the key to associate the value withvalue
- the value to associate with the keyprotected void removeAttribute(java.lang.String key)
StringKeyedMapAdapter
removeAttribute
in class StringKeyedMapAdapter
key
- the key to removeprotected java.util.Iterator getAttributeNames()
StringKeyedMapAdapter
getAttributeNames
in class StringKeyedMapAdapter