Annotation Type ConditionalOnDmnEngine
-
@Retention(RUNTIME) @Target({TYPE,METHOD}) @Documented @ConditionalOnClass(name={"org.flowable.dmn.engine.DmnEngine","org.flowable.dmn.spring.SpringDmnEngineConfiguration"}) @ConditionalOnProperty(prefix="flowable.dmn", name="enabled", havingValue="true", matchIfMissing=true) public @interface ConditionalOnDmnEngine
A metaConditionalannotation that checks if the DMN engine should / can be activated.By default the dmn engine is activated when the
DmnEngineandSpringDmnEngineConfigurationare present. Additionally the propertyflowable.dmn.enabledis checked, if it istrueor missing the dmn engine would be enabled.