Uses of Interface
org.springframework.webflow.engine.FlowAttributeMapper

Packages that use FlowAttributeMapper
org.springframework.webflow.engine The implementation of the core flow definition artifacts that serve the basis of the flow execution engine. 
org.springframework.webflow.engine.builder The flow builder subsystem for building and assembling executable flow definitions. 
org.springframework.webflow.engine.support Support implementations for internal engine-specific types. 
 

Uses of FlowAttributeMapper in org.springframework.webflow.engine
 

Methods in org.springframework.webflow.engine that return FlowAttributeMapper
 FlowAttributeMapper SubflowState.getAttributeMapper()
          Returns the attribute mapper used to map data between the parent and child flow, or null if no mapping is needed.
 

Methods in org.springframework.webflow.engine with parameters of type FlowAttributeMapper
 void SubflowState.setAttributeMapper(FlowAttributeMapper attributeMapper)
          Set the attribute mapper used to map model data between the parent and child flow.
 

Uses of FlowAttributeMapper in org.springframework.webflow.engine.builder
 

Methods in org.springframework.webflow.engine.builder that return FlowAttributeMapper
protected  FlowAttributeMapper AbstractFlowBuilder.attributeMapper(java.lang.String id)
          Request that the attribute mapper with the specified name be used to map attributes between a parent flow and a spawning subflow when the subflow state being constructed is entered.
 FlowAttributeMapper FlowServiceLocator.getAttributeMapper(java.lang.String id)
          Returns the flow attribute mapper with the provided id.
 FlowAttributeMapper BaseFlowServiceLocator.getAttributeMapper(java.lang.String id)
           
 

Methods in org.springframework.webflow.engine.builder with parameters of type FlowAttributeMapper
protected  State AbstractFlowBuilder.addSubflowState(java.lang.String stateId, Action[] entryActions, Flow subflow, FlowAttributeMapper attributeMapper, Transition[] transitions, FlowExecutionExceptionHandler[] exceptionHandlers, Action[] exitActions, AttributeMap attributes)
          Adds a subflow state to the flow built by this builder.
protected  State AbstractFlowBuilder.addSubflowState(java.lang.String stateId, Flow subflow, FlowAttributeMapper attributeMapper, Transition transition)
          Adds a subflow state to the flow built by this builder.
protected  State AbstractFlowBuilder.addSubflowState(java.lang.String stateId, Flow subflow, FlowAttributeMapper attributeMapper, Transition[] transitions)
          Adds a subflow state to the flow built by this builder.
 State FlowArtifactFactory.createSubflowState(java.lang.String id, Flow flow, Action[] entryActions, Flow subflow, FlowAttributeMapper attributeMapper, Transition[] transitions, FlowExecutionExceptionHandler[] exceptionHandlers, Action[] exitActions, AttributeMap attributes)
          Factory method that creates a new subflow state, a state where a parent flow spawns another flow as a subflow.
 

Uses of FlowAttributeMapper in org.springframework.webflow.engine.support
 

Classes in org.springframework.webflow.engine.support that implement FlowAttributeMapper
 class AbstractFlowAttributeMapper
          Convenient base class for attribute mapper implementations.
 class ConfigurableFlowAttributeMapper
          Generic flow attribute mapper implementation that allows mappings to be configured in a declarative fashion.
 



Copyright © 2009 Spring Framework. All Rights Reserved.