Uses of Class
org.springframework.webflow.engine.Transition

Packages that use Transition
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. 
org.springframework.webflow.test Support for testing flows and their associated artifacts. 
 

Uses of Transition in org.springframework.webflow.engine
 

Methods in org.springframework.webflow.engine that return Transition
 Transition TransitionableState.getRequiredTransition(RequestContext context)
          Get a transition in this state for given flow execution request context.
 Transition ActionState.getRequiredTransition(RequestContext context)
           
 Transition TransitionSet.getTransition(RequestContext context)
          Gets a transition for given flow execution request context.
 Transition[] TransitionSet.toArray()
          Convert this set to a typed transition array.
 

Methods in org.springframework.webflow.engine with parameters of type Transition
 boolean TransitionSet.add(Transition transition)
          Add a transition to this set.
 boolean TransitionSet.addAll(Transition[] transitions)
          Add a collection of transition instances to this set.
 boolean TransitionSet.contains(Transition transition)
          Tests if this transition is in this set.
 ViewSelection RequestControlContext.execute(Transition transition)
          Execute this transition out of the current source state.
 boolean TransitionSet.remove(Transition transition)
          Remove the transition instance from this set.
 State TargetStateResolver.resolveTargetState(Transition transition, State sourceState, RequestContext context)
          Resolve the target state of the transition from the source state in the current request context.
 void RequestControlContext.setLastTransition(Transition lastTransition)
          Record the last transition that executed in the executing flow.
 

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

Methods in org.springframework.webflow.engine.builder that return Transition
 Transition FlowArtifactFactory.createTransition(TargetStateResolver targetStateResolver, TransitionCriteria matchingCriteria, TransitionCriteria executionCriteria, AttributeMap attributes)
          Factory method that creates a new transition, a path from one step in a flow to another.
protected  Transition AbstractFlowBuilder.transition(TransitionCriteria matchingCriteria, TargetStateResolver targetStateResolver)
          Creates a new transition.
protected  Transition AbstractFlowBuilder.transition(TransitionCriteria matchingCriteria, TargetStateResolver targetStateResolver, TransitionCriteria executionCriteria)
          Creates a new transition.
protected  Transition AbstractFlowBuilder.transition(TransitionCriteria matchingCriteria, TargetStateResolver targetStateResolver, TransitionCriteria executionCriteria, AttributeMap attributes)
          Creates a new transition.
 

Methods in org.springframework.webflow.engine.builder with parameters of type Transition
protected  State AbstractFlowBuilder.addActionState(java.lang.String stateId, Action[] entryActions, Action[] actions, Transition[] transitions, FlowExecutionExceptionHandler[] exceptionHandlers, Action[] exitActions, AttributeMap attributes)
          Adds an action state to the flow built by this builder.
protected  State AbstractFlowBuilder.addActionState(java.lang.String stateId, Action action, Transition transition)
          Adds an action state to the flow built by this builder.
protected  State AbstractFlowBuilder.addActionState(java.lang.String stateId, Action action, Transition[] transitions)
          Adds an action state to the flow built by this builder.
protected  State AbstractFlowBuilder.addActionState(java.lang.String stateId, Action action, Transition transition, FlowExecutionExceptionHandler exceptionHandler)
          Adds an action state to the flow built by this builder.
protected  State AbstractFlowBuilder.addDecisionState(java.lang.String stateId, Action[] entryActions, Transition[] transitions, FlowExecutionExceptionHandler[] exceptionHandlers, Action[] exitActions, AttributeMap attributes)
          Adds a decision state to the flow built by this builder.
protected  State AbstractFlowBuilder.addDecisionState(java.lang.String stateId, Transition[] transitions)
          Adds a decision state to the flow built by this builder.
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.
protected  State AbstractFlowBuilder.addViewState(java.lang.String stateId, Action[] entryActions, ViewSelector viewSelector, Action[] renderActions, Transition[] transitions, FlowExecutionExceptionHandler[] exceptionHandlers, Action[] exitActions, AttributeMap attributes)
          Adds a view state to the flow built by this builder.
protected  State AbstractFlowBuilder.addViewState(java.lang.String stateId, java.lang.String viewName, Action renderAction, Transition transition)
          Adds a view state to the flow built by this builder.
protected  State AbstractFlowBuilder.addViewState(java.lang.String stateId, java.lang.String viewName, Action renderAction, Transition[] transitions)
          Adds a view state to the flow built by this builder.
protected  State AbstractFlowBuilder.addViewState(java.lang.String stateId, java.lang.String viewName, Transition transition)
          Adds a view state to the flow built by this builder.
protected  State AbstractFlowBuilder.addViewState(java.lang.String stateId, java.lang.String viewName, Transition[] transitions)
          Adds a view state to the flow built by this builder.
 State FlowArtifactFactory.createActionState(java.lang.String id, Flow flow, Action[] entryActions, Action[] actions, Transition[] transitions, FlowExecutionExceptionHandler[] exceptionHandlers, Action[] exitActions, AttributeMap attributes)
          Factory method that creates a new action state, a state where a system action is executed.
 State FlowArtifactFactory.createDecisionState(java.lang.String id, Flow flow, Action[] entryActions, Transition[] transitions, FlowExecutionExceptionHandler[] exceptionHandlers, Action[] exitActions, AttributeMap attributes)
          Factory method that creates a new decision state, a state where a flow routing decision is made.
 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.
 State FlowArtifactFactory.createViewState(java.lang.String id, Flow flow, Action[] entryActions, ViewSelector viewSelector, Action[] renderActions, Transition[] transitions, FlowExecutionExceptionHandler[] exceptionHandlers, Action[] exitActions, AttributeMap attributes)
          Factory method that creates a new view state, a state where a user is allowed to participate in the flow.
 

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

Methods in org.springframework.webflow.engine.support with parameters of type Transition
 State DefaultTargetStateResolver.resolveTargetState(Transition transition, State sourceState, RequestContext context)
           
 

Uses of Transition in org.springframework.webflow.test
 

Methods in org.springframework.webflow.test with parameters of type Transition
 ViewSelection MockRequestControlContext.execute(Transition transition)
           
 void MockRequestContext.setLastTransition(Transition lastTransition)
          Set the last transition that executed in this request context.
 



Copyright © 2009 Spring Framework. All Rights Reserved.