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