| org.springframework.webflow.definition.TransitionDefinition
All known Subclasses: org.springframework.webflow.engine.Transition,
TransitionDefinition | public interface TransitionDefinition extends Annotated(Code) | | A transition takes a flow from one state to another.
author: Keith Donald author: Erwin Vervaet |
Method Summary | |
public String | getId() The identifier of this transition. | public String | getTargetStateId() Returns an identification of the target state of this transition. |
getId | public String getId()(Code) | | The identifier of this transition. This id value should be unique among
all other transitions in a set.
the transition identifier |
getTargetStateId | public String getTargetStateId()(Code) | | Returns an identification of the target state of this transition.
This could be an actual static state id or something more dynamic,
like a string representation of an expression evaluating the target
state id at flow execution time.
the target state identifier |
|
|