public abstract class RequestParameterMap<V> extends StringKeyedMapAdapter<V>
Maps 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, valuespublic RequestParameterMap(javax.portlet.PortletRequest portletRequest)
protected final javax.portlet.PortletRequest getPortletRequest()
protected void setAttribute(java.lang.String key,
V value)
StringKeyedMapAdaptersetAttribute 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)
StringKeyedMapAdapterremoveAttribute in class StringKeyedMapAdapter<V>key - the key to removeprotected java.util.Iterator<java.lang.String> getAttributeNames()
StringKeyedMapAdaptergetAttributeNames in class StringKeyedMapAdapter<V>