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