Interface TransitionDefinition
- All Superinterfaces:
Annotated
- All Known Implementing Classes:
Transition
A transition takes a flow from one state to another.
- Author:
- Keith Donald, Erwin Vervaet
-
Method Summary
Modifier and TypeMethodDescriptiongetId()
The identifier of this transition.Returns an identification of the target state of this transition.Methods inherited from interface org.springframework.webflow.core.Annotated
getAttributes, getCaption, getDescription
-
Method Details
-
getId
String getId()The identifier of this transition. This id value should be unique among all other transitions in a set.- Returns:
- the transition identifier
-
getTargetStateId
String getTargetStateId()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.- Returns:
- the target state identifier
-