Interface HistoryTransitionConfigurer<S,E>
- Type Parameters:
S- the type of stateE- the type of event
- All Superinterfaces:
AnnotationConfigurerBuilder<StateMachineTransitionConfigurer<S,E>>
- All Known Implementing Classes:
DefaultHistoryTransitionConfigurer
public interface HistoryTransitionConfigurer<S,E>
extends AnnotationConfigurerBuilder<StateMachineTransitionConfigurer<S,E>>
TransitionConfigurer interface for configuring Transition
with default history state.- Author:
- Janne Valkealahti
-
Method Summary
Modifier and TypeMethodDescriptionSpecify a source stateSfor thisTransition.Specify a target stateSfor thisTransition.Methods inherited from interface org.springframework.statemachine.config.common.annotation.AnnotationConfigurerBuilder
and
-
Method Details
-
source
Specify a source stateSfor thisTransition.- Parameters:
source- the source stateS- Returns:
- configurer for chaining
-
target
Specify a target stateSfor thisTransition.- Parameters:
target- the target stateS- Returns:
- configurer for chaining
-