Spring Web Flow

org.springframework.faces.webflow.context.portlet
Class MultiValueRequestParameterMap

java.lang.Object
  extended by org.springframework.binding.collection.StringKeyedMapAdapter<V>
      extended by org.springframework.faces.webflow.context.portlet.RequestParameterMap<java.lang.String[]>
          extended by org.springframework.faces.webflow.context.portlet.MultiValueRequestParameterMap
All Implemented Interfaces:
java.util.Map<java.lang.String,java.lang.String[]>

public class MultiValueRequestParameterMap
extends RequestParameterMap<java.lang.String[]>

A Map for accessing to PortletContext request parameters as a String array.

Since:
2.4.0
Author:
Rossen Stoyanchev, Phillip Webb
See Also:
PortletRequest.getParameterValues(String)

Nested Class Summary
 
Nested classes/interfaces inherited from interface java.util.Map
java.util.Map.Entry<K,V>
 
Constructor Summary
MultiValueRequestParameterMap(javax.portlet.PortletRequest portletRequest)
           
 
Method Summary
protected  java.lang.String[] getAttribute(java.lang.String key)
          Hook method that needs to be implemented by concrete subclasses.
 
Methods inherited from class org.springframework.faces.webflow.context.portlet.RequestParameterMap
getAttributeNames, getPortletRequest, removeAttribute, setAttribute
 
Methods inherited from class org.springframework.binding.collection.StringKeyedMapAdapter
clear, containsKey, containsValue, entrySet, get, isEmpty, keySet, put, putAll, remove, size, values
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface java.util.Map
equals, hashCode
 

Constructor Detail

MultiValueRequestParameterMap

public MultiValueRequestParameterMap(javax.portlet.PortletRequest portletRequest)
Method Detail

getAttribute

protected java.lang.String[] getAttribute(java.lang.String key)
Description copied from class: StringKeyedMapAdapter
Hook method that needs to be implemented by concrete subclasses. Gets a value associated with a key.

Specified by:
getAttribute in class StringKeyedMapAdapter<java.lang.String[]>
Parameters:
key - the key to lookup
Returns:
the associated value, or null if none

Spring Web Flow