Annotation Interface ConditionalOnAppEngine


@Retention(RUNTIME) @Target({TYPE,METHOD}) @Documented @ConditionalOnClass(name={"org.flowable.app.engine.AppEngine","org.flowable.app.spring.SpringAppEngineConfiguration"}) @ConditionalOnProperty(prefix="flowable.app", name="enabled", havingValue="true", matchIfMissing=true) public @interface ConditionalOnAppEngine
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 SpringAppEngineConfiguration are present. Additionally the property flowable.app.enabled is checked, if it is true or missing the app engine would be enabled.

Author:
Tijs Rademakers