Annotation Type 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 metaConditionalannotation that checks if the App engine should / can be activated.By default the app engine is activated when the
AppEngineandSpringAppEngineConfigurationare present. Additionally the propertyflowable.app.enabledis checked, if it istrueor missing the app engine would be enabled.- Author:
- Tijs Rademakers