|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use FlowExecutionException | |
---|---|
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.impl | The implementation of Spring Web Flow's flow execution machine. |
org.springframework.webflow.engine.support | Support implementations for internal engine-specific types. |
org.springframework.webflow.execution | Core, stable abstractions for representing runtime executions of flow definitions. |
org.springframework.webflow.test.execution | Support for testing the execution of a flow definition. |
Uses of FlowExecutionException in org.springframework.webflow.engine |
---|
Subclasses of FlowExecutionException in org.springframework.webflow.engine | |
---|---|
class |
ActionExecutionException
Thrown if an unhandled exception occurs when an action is executed. |
class |
NoMatchingTransitionException
Thrown when no transition can be matched given the occurence of an event in the context of a flow execution request. |
Methods in org.springframework.webflow.engine with parameters of type FlowExecutionException | |
---|---|
ViewSelection |
FlowExecutionExceptionHandler.handle(FlowExecutionException exception,
RequestControlContext context)
Handle the exception in the context of the current request, optionally making an error view selection that should be rendered. |
ViewSelection |
Flow.handleException(FlowExecutionException exception,
RequestControlContext context)
Handle an exception that occured during an execution of this flow. |
ViewSelection |
State.handleException(FlowExecutionException exception,
RequestControlContext context)
Handle an exception that occured in this state during the context of the current flow execution request. |
ViewSelection |
FlowExecutionExceptionHandlerSet.handleException(FlowExecutionException exception,
RequestControlContext context)
Handle an exception that occured during the context of the current flow execution request. |
boolean |
FlowExecutionExceptionHandler.handles(FlowExecutionException exception)
Can this handler handle the given exception? |
Methods in org.springframework.webflow.engine that throw FlowExecutionException | |
---|---|
protected abstract ViewSelection |
State.doEnter(RequestControlContext context)
Hook method to execute custom behaviour as a result of entering this state. |
protected ViewSelection |
ActionState.doEnter(RequestControlContext context)
Specialization of State's doEnter template method that executes behaviour specific to this state
type in polymorphic fashion. |
protected ViewSelection |
DecisionState.doEnter(RequestControlContext context)
Specialization of State's doEnter template method that executes behaviour specific to this state
type in polymorphic fashion. |
protected ViewSelection |
EndState.doEnter(RequestControlContext context)
Specialization of State's doEnter template method that executes behaviour specific to this state
type in polymorphic fashion. |
protected ViewSelection |
SubflowState.doEnter(RequestControlContext context)
Specialization of State's doEnter template method that executes behaviour specific to this state
type in polymorphic fashion. |
protected ViewSelection |
ViewState.doEnter(RequestControlContext context)
Specialization of State's doEnter template method that executes behavior specific to this state
type in polymorphic fashion. |
void |
Flow.end(RequestControlContext context,
MutableAttributeMap output)
Inform this flow definition that an execution session of itself has ended. |
ViewSelection |
State.enter(RequestControlContext context)
Enter this state in the provided flow control context. |
ViewSelection |
Transition.execute(State sourceState,
RequestControlContext context)
Execute this state transition. |
ViewSelection |
Flow.handleException(FlowExecutionException exception,
RequestControlContext context)
Handle an exception that occured during an execution of this flow. |
ViewSelection |
Flow.onEvent(RequestControlContext context)
Inform this flow definition that an event was signaled in the current state of an active flow execution. |
ViewSelection |
ViewState.refresh(RequestContext context)
Request that the current view selection be reconstituted to support reissuing the response. |
ViewSelection |
RequestControlContext.signalEvent(Event event)
Signals the occurence of an event in the current state of this flow execution request context. |
ViewSelection |
RequestControlContext.start(Flow flow,
MutableAttributeMap input)
Spawn a new flow session and activate it in the currently executing flow. |
ViewSelection |
Flow.start(RequestControlContext context,
MutableAttributeMap input)
Start a new session for this flow in its start state. |
Uses of FlowExecutionException in org.springframework.webflow.engine.impl |
---|
Methods in org.springframework.webflow.engine.impl with parameters of type FlowExecutionException | |
---|---|
protected ViewSelection |
FlowExecutionImpl.handleException(FlowExecutionException exception,
RequestControlContext context)
Handles an exception that occured performing an operation on this flow execution. |
Methods in org.springframework.webflow.engine.impl that throw FlowExecutionException | |
---|---|
protected ViewSelection |
FlowExecutionImpl.handleException(FlowExecutionException exception,
RequestControlContext context)
Handles an exception that occured performing an operation on this flow execution. |
ViewSelection |
FlowExecutionImpl.refresh(ExternalContext externalContext)
|
ViewSelection |
FlowExecutionImpl.signalEvent(java.lang.String eventId,
ExternalContext externalContext)
|
ViewSelection |
FlowExecutionImpl.start(MutableAttributeMap input,
ExternalContext externalContext)
|
Uses of FlowExecutionException in org.springframework.webflow.engine.support |
---|
Methods in org.springframework.webflow.engine.support with parameters of type FlowExecutionException | |
---|---|
protected void |
TransitionExecutingStateExceptionHandler.exposeException(RequestContext context,
FlowExecutionException exception,
java.lang.Throwable rootCause)
Exposes the given flow exception and root cause in flash scope to make them available for response rendering. |
protected TargetStateResolver |
TransitionExecutingStateExceptionHandler.getTargetStateResolver(FlowExecutionException e)
Find the mapped target state resolver for given exception. |
ViewSelection |
TransitionExecutingStateExceptionHandler.handle(FlowExecutionException exception,
RequestControlContext context)
|
boolean |
TransitionExecutingStateExceptionHandler.handles(FlowExecutionException e)
|
Uses of FlowExecutionException in org.springframework.webflow.execution |
---|
Subclasses of FlowExecutionException in org.springframework.webflow.execution | |
---|---|
class |
EnterStateVetoException
Exception thrown to veto the entering of a state of a flow. |
Methods in org.springframework.webflow.execution with parameters of type FlowExecutionException | |
---|---|
void |
FlowExecutionListener.exceptionThrown(RequestContext context,
FlowExecutionException exception)
Called when an exception is thrown during a flow execution, before the exception is handled by any registered handler . |
void |
FlowExecutionListenerAdapter.exceptionThrown(RequestContext context,
FlowExecutionException exception)
|
Methods in org.springframework.webflow.execution that throw FlowExecutionException | |
---|---|
ViewSelection |
FlowExecution.refresh(ExternalContext context)
Refresh this flow execution, asking the current view selection to be reconstituted to support reissuing the last response. |
ViewSelection |
FlowExecution.signalEvent(java.lang.String eventId,
ExternalContext context)
Signal an occurrence of the specified user event in the current state of this executing flow. |
ViewSelection |
FlowExecution.start(MutableAttributeMap input,
ExternalContext context)
Start this flow execution, transitioning it to the root flow's start state and returning the starting view selection needed to issue an initial user response. |
Uses of FlowExecutionException in org.springframework.webflow.test.execution |
---|
Methods in org.springframework.webflow.test.execution that throw FlowExecutionException | |
---|---|
protected ViewSelection |
AbstractFlowExecutionTests.refresh()
Refresh the flow execution being tested, asking the current view state to make a "refresh" view selection. |
protected ViewSelection |
AbstractFlowExecutionTests.refresh(ExternalContext context)
Refresh the flow execution being tested, asking the current view state state to make a "refresh" view selection. |
protected ViewSelection |
AbstractFlowExecutionTests.signalEvent(java.lang.String eventId)
Signal an occurence of an event in the current state of the flow execution being tested. |
protected ViewSelection |
AbstractFlowExecutionTests.signalEvent(java.lang.String eventId,
ExternalContext context)
Signal an occurence of an event in the current state of the flow execution being tested. |
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. |
protected ViewSelection |
AbstractFlowExecutionTests.startFlow()
Start the flow execution to be tested. |
protected ViewSelection |
AbstractFlowExecutionTests.startFlow(MutableAttributeMap input)
Start the flow execution to be tested. |
protected ViewSelection |
AbstractFlowExecutionTests.startFlow(MutableAttributeMap input,
ExternalContext context)
Start the flow execution to be tested. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |