Class ProcessScope
- java.lang.Object
-
- org.camunda.bpm.engine.spring.components.scope.ProcessScope
-
- All Implemented Interfaces:
org.springframework.beans.factory.config.BeanFactoryPostProcessor,org.springframework.beans.factory.config.Scope,org.springframework.beans.factory.DisposableBean,org.springframework.beans.factory.InitializingBean
public class ProcessScope extends Object implements org.springframework.beans.factory.config.Scope, org.springframework.beans.factory.InitializingBean, org.springframework.beans.factory.config.BeanFactoryPostProcessor, org.springframework.beans.factory.DisposableBean
binds variables to a currently executing Activiti business process (aProcessInstance). Parts of this code are lifted wholesale from Dave Syer's work on the Spring 3.1 RefreshScope.- Since:
- 5.3
- Author:
- Josh Long
-
-
Field Summary
Fields Modifier and Type Field Description static StringPROCESS_SCOPE_NAMEstatic StringPROCESS_SCOPE_PROCESS_VARIABLES_SINGLETONMap of the processVariables.
-
Constructor Summary
Constructors Constructor Description ProcessScope()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidafterPropertiesSet()voiddestroy()Objectget(String name, org.springframework.beans.factory.ObjectFactory<?> objectFactory)StringgetConversationId()voidpostProcessBeanFactory(org.springframework.beans.factory.config.ConfigurableListableBeanFactory beanFactory)voidregisterDestructionCallback(String name, Runnable callback)Objectremove(String name)ObjectresolveContextualObject(String key)voidsetProcessEngine(ProcessEngine processEngine)
-
-
-
Field Detail
-
PROCESS_SCOPE_PROCESS_VARIABLES_SINGLETON
public static final String PROCESS_SCOPE_PROCESS_VARIABLES_SINGLETON
Map of the processVariables. Supports correct, scoped access to process variables so that- See Also:
- Constant Field Values
-
PROCESS_SCOPE_NAME
public static final String PROCESS_SCOPE_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
setProcessEngine
public void setProcessEngine(ProcessEngine processEngine)
-
get
public Object get(String name, org.springframework.beans.factory.ObjectFactory<?> objectFactory)
- Specified by:
getin interfaceorg.springframework.beans.factory.config.Scope
-
registerDestructionCallback
public void registerDestructionCallback(String name, Runnable callback)
- Specified by:
registerDestructionCallbackin interfaceorg.springframework.beans.factory.config.Scope
-
remove
public Object remove(String name)
- Specified by:
removein interfaceorg.springframework.beans.factory.config.Scope
-
resolveContextualObject
public Object resolveContextualObject(String key)
- Specified by:
resolveContextualObjectin interfaceorg.springframework.beans.factory.config.Scope
-
getConversationId
public String getConversationId()
- Specified by:
getConversationIdin interfaceorg.springframework.beans.factory.config.Scope
-
postProcessBeanFactory
public void postProcessBeanFactory(org.springframework.beans.factory.config.ConfigurableListableBeanFactory beanFactory) throws org.springframework.beans.BeansException- Specified by:
postProcessBeanFactoryin interfaceorg.springframework.beans.factory.config.BeanFactoryPostProcessor- Throws:
org.springframework.beans.BeansException
-
destroy
public void destroy() throws Exception- Specified by:
destroyin interfaceorg.springframework.beans.factory.DisposableBean- Throws:
Exception
-
-