public abstract class RequestParameterMap<V> extends StringKeyedMapAdapter<V>
Map
s allowing access to PortletContext
request paramters.SingleValueRequestParameterMap
,
MultiValueRequestParameterMap
Constructor and Description |
---|
RequestParameterMap(javax.portlet.PortletRequest portletRequest) |
Modifier and Type | Method and Description |
---|---|
protected java.util.Iterator<java.lang.String> |
getAttributeNames()
Hook method that needs to be implemented by concrete subclasses.
|
protected javax.portlet.PortletRequest |
getPortletRequest() |
protected void |
removeAttribute(java.lang.String key)
Hook method that needs to be implemented by concrete subclasses.
|
protected void |
setAttribute(java.lang.String key,
V value)
Hook method that needs to be implemented by concrete subclasses.
|
clear, containsKey, containsValue, entrySet, get, getAttribute, isEmpty, keySet, put, putAll, remove, size, values
public RequestParameterMap(javax.portlet.PortletRequest portletRequest)
protected final javax.portlet.PortletRequest getPortletRequest()
protected void setAttribute(java.lang.String key, V value)
StringKeyedMapAdapter
setAttribute
in class StringKeyedMapAdapter<V>
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<V>
key
- the key to removeprotected java.util.Iterator<java.lang.String> getAttributeNames()
StringKeyedMapAdapter
getAttributeNames
in class StringKeyedMapAdapter<V>