Class SpringEventRegistryConfigurator
java.lang.Object
org.flowable.common.engine.impl.AbstractEngineConfigurator<EventRegistryEngine>
org.flowable.eventregistry.impl.configurator.EventRegistryEngineConfigurator
org.flowable.eventregistry.spring.configurator.SpringEventRegistryConfigurator
- All Implemented Interfaces:
EngineConfigurator
- Author:
- Tijs Rademakers, Joram Barrez
-
Field Summary
Fields inherited from class org.flowable.eventregistry.impl.configurator.EventRegistryEngineConfigurator
eventEngineConfiguration
Fields inherited from class org.flowable.common.engine.impl.AbstractEngineConfigurator
buildEngine, enableMybatisXmlMappingValidation
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
configure
(AbstractEngineConfiguration engineConfiguration) Called when the engine boots up, before it is usable, but after the initialisation of internal objects is done.Methods inherited from class org.flowable.eventregistry.impl.configurator.EventRegistryEngineConfigurator
buildEngine, getCustomDeployers, getEntityDeletionOrder, getEntityInsertionOrder, getEventEngineConfiguration, getEventRegistryEngine, getMybatisCfgPath, getPriority, initialiseEventRegistryEngineConfiguration, setEventEngineConfiguration, setEventRegistryEngine
Methods inherited from class org.flowable.common.engine.impl.AbstractEngineConfigurator
beforeInit, createDocumentBuilderFactory, getMybatisTypeAliases, getMybatisTypeHandlers, initClock, initCommandContextFactory, initDataSource, initDbProperties, initDbSqlSessionFactory, initEngine, initEngineConfigurations, initEventDispatcher, initEventRegistryEventConsumers, initialiseCommonProperties, initialiseCommonProperties, initIdGenerator, initObjectMapper, initSchemaManager, initServiceConfigurations, initSessionFactories, initVariableTypes, isEnableMybatisXmlMappingValidation, registerCustomDeployers, registerCustomMybatisMappings, setEnableMybatisXmlMappingValidation
-
Constructor Details
-
SpringEventRegistryConfigurator
public SpringEventRegistryConfigurator()
-
-
Method Details
-
configure
Description copied from interface:EngineConfigurator
Called when the engine boots up, before it is usable, but after the initialisation of internal objects is done. Allows to tweak the engine by passing theAbstractEngineConfiguration
which allows tweaking it programmatically. An example is the ldap user/group manager, which is an addition to the engine. No default properties need to be overridden for this (otherwise theEngineConfigurator.beforeInit(AbstractEngineConfiguration)
method should be used) so the logic contained in this method is executed after initialisation of the default objects. Probably a better name would be 'afterInit' (cfrEngineConfigurator.beforeInit(AbstractEngineConfiguration)
), but not possible due to backwards compatibility.- Specified by:
configure
in interfaceEngineConfigurator
- Overrides:
configure
in classEventRegistryEngineConfigurator
-