public abstract class AbstractState extends java.lang.Object implements State
Constructor and Description |
---|
AbstractState(java.lang.String name) |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getName()
The name of the state.
|
abstract FlowExecutionStatus |
handle(FlowExecutor executor)
Handle some business or processing logic and return a status that can be
used to drive a flow to the next
State . |
java.lang.String |
toString() |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
isEndState
public java.lang.String getName()
State
public java.lang.String toString()
toString
in class java.lang.Object
public abstract FlowExecutionStatus handle(FlowExecutor executor) throws java.lang.Exception
State
State
. The status can be any
string, but special meaning is assigned to the static constants in
FlowExecution
. The context can be used by implementations to do
whatever they need to do. The same context will be passed to all
State
instances, so implementations should be careful that the
context is thread-safe, or used in a thread-safe manner.