org.springframework.webflow.executor |
High-level executors for driving the execution of flow definitions.
The central concept defined by this package is the
{@link org.springframework.webflow.executor.FlowExecutor}, representing
a facade or entry-point for driving the execution of flows. This interface acts
as the system boundary into Spring Web Flow most calling systems interact with.
|
Java Source File Name | Type | Comment |
FlowExecutor.java | Interface | The central facade and entry-point service interface into the Spring Web Flow
system for driving the executions of flow definitions. |
FlowExecutorImpl.java | Class | The default implementation of the central facade for driving the
execution of flows within an application.
This object is responsible for creating and starting new flow executions as
requested by clients, as well as signaling events for processing by existing,
paused executions (that are waiting to be resumed in response to a user
event).
This object is a facade or entry point into the Spring Web Flow execution
system and makes the overall system easier to use. |
RequestParameterInputMapper.java | Class | Simple attribute mapper implementation that puts all entries in the
request parameter map of a source
ExternalContext into the
FlowExecution inputMap. |
ResponseInstruction.java | Class | Immutable value object that provides clients with information about a
response to issue. |