org.springframework.webflow.context.servlet
Class HttpServletRequestParameterMap

java.lang.Object
  extended by org.springframework.binding.collection.StringKeyedMapAdapter
      extended by org.springframework.webflow.context.servlet.HttpServletRequestParameterMap
All Implemented Interfaces:
Map

public class HttpServletRequestParameterMap
extends StringKeyedMapAdapter

Map backed by the Servlet HTTP request parameter map for accessing request parameters. Also provides support for multi-part requests, providing transparent access to the request "fileMap" as a request parameter entry.

Author:
Keith Donald

Nested Class Summary
 
Nested classes/interfaces inherited from interface java.util.Map
Map.Entry<K,V>
 
Constructor Summary
HttpServletRequestParameterMap(javax.servlet.http.HttpServletRequest request)
          Create a new map wrapping the parameters of given request.
 
Method Summary
 
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
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface java.util.Map
equals, hashCode
 

Constructor Detail

HttpServletRequestParameterMap

public HttpServletRequestParameterMap(javax.servlet.http.HttpServletRequest request)
Create a new map wrapping the parameters of given request.