Class HttpServletRequestParameterMap

java.lang.Object
org.springframework.binding.collection.StringKeyedMapAdapter<Object>
org.springframework.webflow.context.servlet.HttpServletRequestParameterMap
All Implemented Interfaces:
Map<String,Object>

public class HttpServletRequestParameterMap extends org.springframework.binding.collection.StringKeyedMapAdapter<Object>
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
  • Constructor Details

    • HttpServletRequestParameterMap

      public HttpServletRequestParameterMap(jakarta.servlet.http.HttpServletRequest request)
      Create a new map wrapping the parameters of given request.
  • Method Details

    • getAttribute

      protected Object getAttribute(String key)
      Specified by:
      getAttribute in class org.springframework.binding.collection.StringKeyedMapAdapter<Object>
    • setAttribute

      protected void setAttribute(String key, Object value)
      Specified by:
      setAttribute in class org.springframework.binding.collection.StringKeyedMapAdapter<Object>
    • removeAttribute

      protected void removeAttribute(String key)
      Specified by:
      removeAttribute in class org.springframework.binding.collection.StringKeyedMapAdapter<Object>
    • getAttributeNames

      protected Iterator<String> getAttributeNames()
      Specified by:
      getAttributeNames in class org.springframework.binding.collection.StringKeyedMapAdapter<Object>