Class DefaultContextAssociationManager
- java.lang.Object
-
- org.camunda.bpm.engine.cdi.impl.context.DefaultContextAssociationManager
-
- All Implemented Interfaces:
Serializable,ContextAssociationManager
public class DefaultContextAssociationManager extends Object implements ContextAssociationManager, Serializable
Default implementation of the business process association manager. Uses a fallback-strategy to associate the process instance with the "broadest" active scope, starting with the conversation. Subclass in order to implement custom association schemes and association with custom scopes.- Author:
- Daniel Meyer
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DefaultContextAssociationManager()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddisAssociate()Disassociates the current process instance with a context / scopeprotected voidensureCommandContextNotActive()voidflushVariableCache()allows to flush the cached variables.protected List<Class<? extends ScopedAssociation>>getAvailableScopedAssociationClasses()Override to add different / additional contexts.protected Class<? extends ScopedAssociation>getBroadestActiveContext()VariableMapgetCachedLocalVariables()VariableMapgetCachedVariables()ExecutiongetExecution()get the current executionprotected ExecutionEntitygetExecutionFromContext()StringgetExecutionId()protected ScopedAssociationgetScopedAssociation()TaskgetTask()get the current taskTypedValuegetVariable(String variableName)get a process variableTypedValuegetVariableLocal(String variableName)get a local process variablevoidsetExecution(Execution execution)associate with the provided executionvoidsetTask(Task task)set a current taskvoidsetVariable(String variableName, Object value)set a process variablevoidsetVariableLocal(String variableName, Object value)set a local process variable
-
-
-
Field Detail
-
log
protected static final Logger log
-
-
Method Detail
-
getBroadestActiveContext
protected Class<? extends ScopedAssociation> getBroadestActiveContext()
-
getAvailableScopedAssociationClasses
protected List<Class<? extends ScopedAssociation>> getAvailableScopedAssociationClasses()
Override to add different / additional contexts.
-
getScopedAssociation
protected ScopedAssociation getScopedAssociation()
-
setExecution
public void setExecution(Execution execution)
Description copied from interface:ContextAssociationManagerassociate with the provided execution- Specified by:
setExecutionin interfaceContextAssociationManager
-
disAssociate
public void disAssociate()
Description copied from interface:ContextAssociationManagerDisassociates the current process instance with a context / scope- Specified by:
disAssociatein interfaceContextAssociationManager
-
getExecutionId
public String getExecutionId()
- Specified by:
getExecutionIdin interfaceContextAssociationManager- Returns:
- the id of the execution currently associated or null
-
getExecution
public Execution getExecution()
Description copied from interface:ContextAssociationManagerget the current execution- Specified by:
getExecutionin interfaceContextAssociationManager
-
getVariable
public TypedValue getVariable(String variableName)
Description copied from interface:ContextAssociationManagerget a process variable- Specified by:
getVariablein interfaceContextAssociationManager
-
setVariable
public void setVariable(String variableName, Object value)
Description copied from interface:ContextAssociationManagerset a process variable- Specified by:
setVariablein interfaceContextAssociationManager
-
getVariableLocal
public TypedValue getVariableLocal(String variableName)
Description copied from interface:ContextAssociationManagerget a local process variable- Specified by:
getVariableLocalin interfaceContextAssociationManager
-
setVariableLocal
public void setVariableLocal(String variableName, Object value)
Description copied from interface:ContextAssociationManagerset a local process variable- Specified by:
setVariableLocalin interfaceContextAssociationManager
-
getExecutionFromContext
protected ExecutionEntity getExecutionFromContext()
-
getTask
public Task getTask()
Description copied from interface:ContextAssociationManagerget the current task- Specified by:
getTaskin interfaceContextAssociationManager
-
setTask
public void setTask(Task task)
Description copied from interface:ContextAssociationManagerset a current task- Specified by:
setTaskin interfaceContextAssociationManager
-
getCachedVariables
public VariableMap getCachedVariables()
- Specified by:
getCachedVariablesin interfaceContextAssociationManager- Returns:
- a
VariableMapof process variables cached between flushes
-
getCachedLocalVariables
public VariableMap getCachedLocalVariables()
- Specified by:
getCachedLocalVariablesin interfaceContextAssociationManager- Returns:
- a
VariableMapof local process variables cached between flushes
-
flushVariableCache
public void flushVariableCache()
Description copied from interface:ContextAssociationManagerallows to flush the cached variables.- Specified by:
flushVariableCachein interfaceContextAssociationManager
-
ensureCommandContextNotActive
protected void ensureCommandContextNotActive()
-
-