Annotation Type ConditionalOnCoreFormEngine
@Retention(RUNTIME)
@Target({TYPE,METHOD})
@Documented
@ConditionalOnClass(name={"com.flowable.form.engine.FormEngine","com.flowable.form.spring.SpringFormEngineConfiguration"})
@ConditionalOnProperty(prefix="flowable.form",
name="enabled",
havingValue="true",
matchIfMissing=true)
public @interface ConditionalOnCoreFormEngine
A meta
Conditional annotation that checks if the Form engine
should / can be activated.
By default the form engine is activated when the FormEngine and
SpringFormEngineConfiguration are present.
Additionally the property flowable.form.enabled is checked, if it is true or missing
the form engine would be enabled.