@Retention(value=RUNTIME) @Target(value={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
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.
Copyright © 2021 Flowable. All rights reserved.