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

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

Introduction

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

Prototype

void configure(B builder) throws Exception;

Source Link

Document

Configure the AnnotationBuilder by setting the necessary properties on the AnnotationBuilder .

Usage

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

@SuppressWarnings("unchecked")
private void configureMainConfigurers() throws Exception {
    for (AnnotationConfigurer<O, B> configurer : getMainConfigurers()) {
        configurer.configure((B) this);
    }/*  w w  w. java 2 s .com*/
}

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

@SuppressWarnings("unchecked")
private void configurePostConfigurers() throws Exception {
    for (AnnotationConfigurer<O, B> configurer : getPostConfigurers()) {
        configurer.configure((B) this);
    }//w w w .j  a va  2 s.c om
}