Interface TransitionableStateDefinition
- All Superinterfaces:
Annotated
,StateDefinition
- All Known Implementing Classes:
ActionState
,DecisionState
,SubflowState
,TransitionableState
,ViewState
A state that can transition to another state.
- Author:
- Keith Donald, Erwin Vervaet
-
Method Summary
Modifier and TypeMethodDescriptiongetTransition
(String eventId) Returns the transition that matches the event with the provided id.Returns the available transitions out of this state.Methods inherited from interface org.springframework.webflow.core.Annotated
getAttributes, getCaption, getDescription
Methods inherited from interface org.springframework.webflow.definition.StateDefinition
getId, getOwner, isViewState
-
Method Details
-
getTransitions
TransitionDefinition[] getTransitions()Returns the available transitions out of this state.- Returns:
- the available state transitions
-
getTransition
Returns the transition that matches the event with the provided id.- Parameters:
eventId
- the event id- Returns:
- the transition that matches, or null if no match is found.
-