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