Uses of Interface
org.springframework.webflow.core.collection.ParameterMap

Packages that use ParameterMap
org.springframework.webflow.context The external context subsystem for accessing the environment of a client that has called into Spring Web Flow. 
org.springframework.webflow.context.portlet The representation of a client request into Spring Web Flow from a JSR-168 Portlet environment. 
org.springframework.webflow.context.servlet The representation of a client request into Spring Web Flow from an HTTP Servlet environment. 
org.springframework.webflow.core.collection Core element collection types used within Spring Web Flow. 
org.springframework.webflow.execution Core, stable abstractions for representing runtime executions of flow definitions. 
org.springframework.webflow.executor.jsf The integration layer between Spring Web Flow and Java Server Faces (JSF). 
org.springframework.webflow.executor.support Flow executor implementation support; includes helpers for driving the execution of flows. 
org.springframework.webflow.test Support for testing flows and their associated artifacts. 
org.springframework.webflow.test.execution Support for testing the execution of a flow definition. 
 

Uses of ParameterMap in org.springframework.webflow.context
 

Methods in org.springframework.webflow.context that return ParameterMap
 ParameterMap ExternalContext.getRequestParameterMap()
          Provides access to the parameters associated with the user request that led to SWF being called.
 

Uses of ParameterMap in org.springframework.webflow.context.portlet
 

Methods in org.springframework.webflow.context.portlet that return ParameterMap
 ParameterMap PortletExternalContext.getRequestParameterMap()
           
 

Uses of ParameterMap in org.springframework.webflow.context.servlet
 

Methods in org.springframework.webflow.context.servlet that return ParameterMap
 ParameterMap ServletExternalContext.getRequestParameterMap()
           
 

Uses of ParameterMap in org.springframework.webflow.core.collection
 

Classes in org.springframework.webflow.core.collection that implement ParameterMap
 class LocalParameterMap
          An immutable parameter map storing String-keyed, String-valued parameters in a backing Map implementation.
 

Uses of ParameterMap in org.springframework.webflow.execution
 

Methods in org.springframework.webflow.execution that return ParameterMap
 ParameterMap RequestContext.getRequestParameters()
          Returns the immutable input parameters associated with this request into Spring Web Flow.
 

Uses of ParameterMap in org.springframework.webflow.executor.jsf
 

Methods in org.springframework.webflow.executor.jsf that return ParameterMap
 ParameterMap JsfExternalContext.getRequestParameterMap()
           
 

Uses of ParameterMap in org.springframework.webflow.executor.support
 

Methods in org.springframework.webflow.executor.support with parameters of type ParameterMap
protected  java.lang.String RequestParameterFlowExecutorArgumentHandler.findParameter(java.lang.String logicalParameterName, ParameterMap parameters)
          Obtain a named parameter from the request parameters.
 

Uses of ParameterMap in org.springframework.webflow.test
 

Classes in org.springframework.webflow.test that implement ParameterMap
 class MockParameterMap
          A extension of parameter map that allows for mutation of parameters.
 

Methods in org.springframework.webflow.test that return ParameterMap
 ParameterMap MockExternalContext.getRequestParameterMap()
           
 ParameterMap MockRequestContext.getRequestParameters()
           
 

Methods in org.springframework.webflow.test with parameters of type ParameterMap
 void MockExternalContext.setRequestParameterMap(ParameterMap requestParameterMap)
          Set the request parameter map.
 

Constructors in org.springframework.webflow.test with parameters of type ParameterMap
MockExternalContext(ParameterMap requestParameterMap)
          Creates a mock external context with the specified parameters in the request parameter map.
MockRequestContext(ParameterMap requestParameterMap)
          Creates a new mock request context with the following defaults: A flow execution context with a active session of flow "mockFlow" in state "mockState".
 

Uses of ParameterMap in org.springframework.webflow.test.execution
 

Methods in org.springframework.webflow.test.execution with parameters of type ParameterMap
protected  ExternalContext AbstractFlowExecutionTests.createExternalContext(ParameterMap requestParameters)
          Creates an ExternalContext instance.
protected  ViewSelection AbstractFlowExecutionTests.signalEvent(java.lang.String eventId, ParameterMap requestParameters)
          Signal an occurence of an event in the current state of the flow execution being tested.
 



Copyright © 2009 Spring Framework. All Rights Reserved.