Annotation Type ConditionalOnCoreContentEngine
@Retention(RUNTIME)
@Target({TYPE,METHOD})
@Documented
@ConditionalOnClass(name={"com.flowable.content.engine.ContentEngine","com.flowable.content.spring.SpringContentEngineConfiguration"})
@ConditionalOnProperty(prefix="flowable.content",
name="enabled",
havingValue="true",
matchIfMissing=true)
public @interface ConditionalOnCoreContentEngine
A meta
Conditional annotation that checks if the Content engine
should / can be activated.
By default the content engine is activated when the ContentEngine and
SpringContentEngineConfiguration are present.
Additionally the property flowable.content.enabled is checked, if it is true or missing
the content engine would be enabled.
- Author:
- Filip Hrisafov