Package org.flowable.common.spring
Interface SpringEngineConfiguration
-
- All Superinterfaces:
org.springframework.context.ApplicationContextAware,org.springframework.beans.factory.Aware,org.springframework.context.Lifecycle,org.springframework.context.Phased,org.springframework.context.SmartLifecycle
public interface SpringEngineConfiguration extends org.springframework.context.ApplicationContextAware, org.springframework.context.SmartLifecycle- Author:
- Tijs Rademakers
-
-
Field Summary
Fields Modifier and Type Field Description static intPHASEstatic intPHASE_DELTA
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description org.springframework.context.ApplicationContextgetApplicationContext()Map<Object,Object>getBeans()StringgetDeploymentMode()StringgetDeploymentName()org.springframework.core.io.Resource[]getDeploymentResources()default intgetPhase()org.springframework.transaction.PlatformTransactionManagergetTransactionManager()default booleanisAutoStartup()voidsetApplicationContext(org.springframework.context.ApplicationContext applicationContext)voidsetDeploymentMode(String deploymentMode)voidsetDeploymentName(String deploymentName)voidsetDeploymentResources(org.springframework.core.io.Resource[] deploymentResources)voidsetTransactionManager(org.springframework.transaction.PlatformTransactionManager transactionManager)default voidstop(Runnable callback)
-
-
-
Field Detail
-
PHASE
static final int PHASE
- See Also:
- Constant Field Values
-
PHASE_DELTA
static final int PHASE_DELTA
- See Also:
- Constant Field Values
-
-
Method Detail
-
getTransactionManager
org.springframework.transaction.PlatformTransactionManager getTransactionManager()
-
setTransactionManager
void setTransactionManager(org.springframework.transaction.PlatformTransactionManager transactionManager)
-
getDeploymentName
String getDeploymentName()
-
setDeploymentName
void setDeploymentName(String deploymentName)
-
getDeploymentResources
org.springframework.core.io.Resource[] getDeploymentResources()
-
setDeploymentResources
void setDeploymentResources(org.springframework.core.io.Resource[] deploymentResources)
-
getApplicationContext
org.springframework.context.ApplicationContext getApplicationContext()
-
setApplicationContext
void setApplicationContext(org.springframework.context.ApplicationContext applicationContext)
- Specified by:
setApplicationContextin interfaceorg.springframework.context.ApplicationContextAware
-
getDeploymentMode
String getDeploymentMode()
-
setDeploymentMode
void setDeploymentMode(String deploymentMode)
-
isAutoStartup
default boolean isAutoStartup()
- Specified by:
isAutoStartupin interfaceorg.springframework.context.SmartLifecycle
-
stop
default void stop(Runnable callback)
- Specified by:
stopin interfaceorg.springframework.context.SmartLifecycle
-
getPhase
default int getPhase()
- Specified by:
getPhasein interfaceorg.springframework.context.Phased- Specified by:
getPhasein interfaceorg.springframework.context.SmartLifecycle
-
-