Spring Web Flow

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

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

public class SingleValueRequestPropertyMap
extends RequestPropertyMap<java.lang.String>

A Map for accessing to PortletContext request properties containing single String values.

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

Nested Class Summary
 
Nested classes/interfaces inherited from interface java.util.Map
java.util.Map.Entry<K,V>
 
Constructor Summary
SingleValueRequestPropertyMap(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.RequestPropertyMap
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

SingleValueRequestPropertyMap

public SingleValueRequestPropertyMap(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