Interface VerifierConfigurer<S,E>
- Type Parameters:
S
- the type of stateE
- the type of event
- All Superinterfaces:
AnnotationConfigurerBuilder<StateMachineConfigurationConfigurer<S,
E>>
- All Known Implementing Classes:
DefaultVerifierConfigurer
public interface VerifierConfigurer<S,E>
extends AnnotationConfigurerBuilder<StateMachineConfigurationConfigurer<S,E>>
Base
ConfigConfigurer
interface for configuring state machine model verifier.-
Method Summary
Modifier and TypeMethodDescriptionenabled
(boolean enabled) Specify if verifier is enabled.verifier
(StateMachineModelVerifier<S, E> verifier) Specify a custom model verifier.Methods inherited from interface org.springframework.statemachine.config.common.annotation.AnnotationConfigurerBuilder
and
-
Method Details
-
enabled
Specify if verifier is enabled. On default verifier is enabled.- Parameters:
enabled
- the enable flag- Returns:
- configurer for chaining
-
verifier
Specify a custom model verifier.- Parameters:
verifier
- the state machine model verifier- Returns:
- configurer for chaining
-