Package org.flowable.spring.boot
Interface EngineConfigurationConfigurer<T>
-
- All Known Subinterfaces:
ProcessEngineConfigurationConfigurer
public interface EngineConfigurationConfigurer<T>Interface to be implemented by a bean that does some extra configuration of a Flowable engines. If such a bean is defined, it will be called when the specific engine configuration is created and the default values have been set.- Author:
- Filip Hrisafov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidconfigure(T engineConfiguration)Configure the provided engine.
-
-
-
Method Detail
-
configure
void configure(T engineConfiguration)
Configure the provided engine. For example to provide a custom service implementation for a certain engine.
-
-