Class TransitionsData<S,E>
java.lang.Object
org.springframework.statemachine.config.model.TransitionsData<S,E>
- Type Parameters:
S
- the type of stateE
- the type of event
Data object for transitions.
-
Constructor Summary
ConstructorDescriptionTransitionsData
(Collection<TransitionData<S, E>> transitionsData) Instantiates a new transitions data.TransitionsData
(Collection<TransitionData<S, E>> transitionsData, Map<S, List<ChoiceData<S, E>>> choices, Map<S, List<JunctionData<S, E>>> junctions, Map<S, List<S>> forks, Map<S, List<S>> joins, Collection<EntryData<S, E>> entrys, Collection<ExitData<S, E>> exits, Collection<HistoryData<S, E>> historys) Instantiates a new state machine transitions. -
Method Summary
-
Constructor Details
-
TransitionsData
Instantiates a new transitions data.- Parameters:
transitionsData
- the transitions data
-
TransitionsData
public TransitionsData(Collection<TransitionData<S, E>> transitionsData, Map<S, List<ChoiceData<S, E>>> choices, Map<S, List<JunctionData<S, E>>> junctions, Map<S, List<S>> forks, Map<S, List<S>> joins, Collection<EntryData<S, E>> entrys, Collection<ExitData<S, E>> exits, Collection<HistoryData<S, E>> historys) Instantiates a new state machine transitions.- Parameters:
transitionsData
- the transitions datachoices
- the choicesjunctions
- the junctionsforks
- the forksjoins
- the joinsentrys
- the entrysexits
- the exitshistorys
- the historys
-
-
Method Details
-
getTransitions
Gets the transitions.- Returns:
- the transitions
-
getChoices
Gets the choices.- Returns:
- the choices
-
getJunctions
Gets the junctions.- Returns:
- the junctions
-
getForks
Gets the forks.- Returns:
- the forks
-
getJoins
Gets the joins.- Returns:
- the joins
-
getEntrys
Gets the entrys.- Returns:
- the entrys
-
getExits
Gets the exits.- Returns:
- the exits
-
getHistorys
Gets the historys.- Returns:
- the historys
-