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

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

Uses of RequestControlContext in org.springframework.webflow.engine
 

Methods in org.springframework.webflow.engine with parameters of type RequestControlContext
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.
 void TransitionableState.exit(RequestControlContext context)
          Exit this state.
 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.
 ViewSelection Flow.onEvent(RequestControlContext context)
          Inform this flow definition that an event was signaled in the current state of an active flow execution.
 ViewSelection TransitionableState.onEvent(RequestControlContext context)
          Inform this state definition that an event was signaled in it.
 ViewSelection SubflowState.onEvent(RequestControlContext context)
          Called on completion of the subflow to handle the subflow result event as determined by the end state reached by the subflow.
 ViewSelection TransitionableState.reenter(RequestControlContext context)
          Re-enter this state.
 ViewSelection Flow.start(RequestControlContext context, MutableAttributeMap input)
          Start a new session for this flow in its start state.
 

Uses of RequestControlContext in org.springframework.webflow.engine.impl
 

Methods in org.springframework.webflow.engine.impl that return RequestControlContext
protected  RequestControlContext FlowExecutionImpl.createControlContext(ExternalContext externalContext)
          Create a flow execution control context.
 

Methods in org.springframework.webflow.engine.impl with parameters of type RequestControlContext
protected  ViewSelection FlowExecutionImpl.handleException(FlowExecutionException exception, RequestControlContext context)
          Handles an exception that occured performing an operation on this flow execution.
protected  ViewSelection FlowExecutionImpl.pause(RequestControlContext context, ViewSelection selectedView)
          Pause this flow execution.
protected  void FlowExecutionImpl.resume(RequestControlContext context)
          Resume this flow execution.
 

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

Methods in org.springframework.webflow.engine.support with parameters of type RequestControlContext
 ViewSelection TransitionExecutingStateExceptionHandler.handle(FlowExecutionException exception, RequestControlContext context)
           
 

Uses of RequestControlContext in org.springframework.webflow.test
 

Classes in org.springframework.webflow.test that implement RequestControlContext
 class MockRequestControlContext
          Mock implementation of the RequestControlContext interface to facilitate standalone Flow and State unit tests.
 



Copyright © 2009 Spring Framework. All Rights Reserved.