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

Packages that use FlowExecutionExceptionHandler
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 FlowExecutionExceptionHandler in org.springframework.webflow.engine
 

Methods in org.springframework.webflow.engine that return FlowExecutionExceptionHandler
 FlowExecutionExceptionHandler[] FlowExecutionExceptionHandlerSet.toArray()
          Convert this list to a typed state exception handler array.
 

Methods in org.springframework.webflow.engine with parameters of type FlowExecutionExceptionHandler
 boolean FlowExecutionExceptionHandlerSet.add(FlowExecutionExceptionHandler exceptionHandler)
          Add a state exception handler to this set.
 boolean FlowExecutionExceptionHandlerSet.addAll(FlowExecutionExceptionHandler[] exceptionHandlers)
          Add a collection of state exception handler instances to this set.
 boolean FlowExecutionExceptionHandlerSet.contains(FlowExecutionExceptionHandler exceptionHandler)
          Tests if this state exception handler is in this set.
 boolean FlowExecutionExceptionHandlerSet.remove(FlowExecutionExceptionHandler exceptionHandler)
          Remove the exception handler instance from this set.
 

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

Methods in org.springframework.webflow.engine.builder that return FlowExecutionExceptionHandler
 FlowExecutionExceptionHandler FlowServiceLocator.getExceptionHandler(java.lang.String id)
          Returns the exception handler to handle flow execution exceptions with the provided id.
 FlowExecutionExceptionHandler BaseFlowServiceLocator.getExceptionHandler(java.lang.String id)
           
 

Methods in org.springframework.webflow.engine.builder with parameters of type FlowExecutionExceptionHandler
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, 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.addEndState(java.lang.String stateId, Action[] entryActions, ViewSelector viewSelector, org.springframework.binding.mapping.AttributeMapper outputMapper, FlowExecutionExceptionHandler[] exceptionHandlers, AttributeMap attributes)
          Adds an end 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.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.
 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.createEndState(java.lang.String id, Flow flow, Action[] entryActions, ViewSelector viewSelector, org.springframework.binding.mapping.AttributeMapper outputMapper, FlowExecutionExceptionHandler[] exceptionHandlers, AttributeMap attributes)
          Factory method that creates a new end state, a state where an executing flow session terminates.
 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 FlowExecutionExceptionHandler in org.springframework.webflow.engine.support
 

Classes in org.springframework.webflow.engine.support that implement FlowExecutionExceptionHandler
 class TransitionExecutingStateExceptionHandler
          A flow execution exception handler that maps the occurence of a specific type of exception to a transition to a new State.
 



Copyright © 2009 Spring Framework. All Rights Reserved.