Annotation Type ConditionalOnProcessEngine
-
@Retention(RUNTIME) @Target({TYPE,METHOD}) @Documented @ConditionalOnClass(name={"org.flowable.engine.ProcessEngine","org.flowable.spring.SpringProcessEngineConfiguration"}) @ConditionalOnProperty(prefix="flowable.process", name="enabled", havingValue="true", matchIfMissing=true) public @interface ConditionalOnProcessEngine
A metaConditionalannotation that checks if the Process engine should / can be activated.By default the process engine is activated when the
ProcessEngineandSpringProcessEngineConfigurationare present. Additionally the propertyflowable.process.enabledis checked, if it istrueor missing the process engine would be enabled.- Author:
- Filip Hrisafov