Example usage for org.springframework.statemachine.config.common.annotation AnnotationConfigurer init

List of usage examples for org.springframework.statemachine.config.common.annotation AnnotationConfigurer init

Introduction

In this page you can find the example usage for org.springframework.statemachine.config.common.annotation AnnotationConfigurer init.

Prototype

void init(B builder) throws Exception;

Source Link

Document

Initialise the AnnotationBuilder .

Usage

From source file:org.springframework.statemachine.config.common.annotation.AbstractConfiguredAnnotationBuilder.java

@SuppressWarnings("unchecked")
private void initMainConfigurers() throws Exception {
    for (AnnotationConfigurer<O, B> configurer : getMainConfigurers()) {
        configurer.init((B) this);
    }/*from ww  w.j a v  a  2 s  . c o m*/
}