@Retention(value=RUNTIME) @Target(value={TYPE,METHOD}) @Documented @ConditionalOnClass(name={"org.flowable.content.engine.ContentEngine","org.flowable.content.spring.SpringContentEngineConfiguration"}) @ConditionalOnProperty(prefix="flowable.content", name="enabled", havingValue="true", matchIfMissing=true) public @interface ConditionalOnContentEngine
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.
Copyright © 2021 Flowable. All rights reserved.