| |
|
| java.lang.Object org.springframework.webflow.engine.impl.FlowSessionImpl
FlowSessionImpl | class FlowSessionImpl implements FlowSession,Externalizable(Code) | | Implementation of the FlowSession interfaced used internally by the
FlowExecutionImpl . This class is closely coupled with
FlowExecutionImpl and RequestControlContextImpl .
The three classes work together to form a complete flow execution
implementation.
author: Keith Donald author: Erwin Vervaet author: Ben Hale |
FlowSessionImpl | public FlowSessionImpl()(Code) | | Default constructor required for externalizable serialization. Should NOT
be called programmatically.
|
FlowSessionImpl | public FlowSessionImpl(Flow flow, FlowSessionImpl parent)(Code) | | Create a new flow session.
Parameters: flow - the flow definition associated with this flow session Parameters: parent - this session's parent (may be null) |
getFlowId | String getFlowId()(Code) | | Returns the id of the flow of this session.
|
getStateId | String getStateId()(Code) | | Returns the id of the current state of this session.
|
isRoot | public boolean isRoot()(Code) | | |
setStatus | void setStatus(FlowSessionStatus status)(Code) | | Set the status of this flow session.
Parameters: status - the new status to set |
|
|
|