Class ScopedAssociation
- java.lang.Object
-
- org.camunda.bpm.engine.cdi.impl.context.ScopedAssociation
-
- Direct Known Subclasses:
ConversationScopedAssociation,RequestScopedAssociation
public class ScopedAssociation extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected VariableMapcachedVariablesprotected VariableMapcachedVariablesLocalprotected Executionexecutionprotected Tasktask
-
Constructor Summary
Constructors Constructor Description ScopedAssociation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidflushVariableCache()VariableMapgetCachedVariables()VariableMapgetCachedVariablesLocal()ExecutiongetExecution()TaskgetTask()<T extends TypedValue>
TgetVariable(java.lang.String variableName)<T extends TypedValue>
TgetVariableLocal(java.lang.String variableName)voidsetExecution(Execution execution)voidsetTask(Task task)voidsetVariable(java.lang.String variableName, java.lang.Object value)voidsetVariableLocal(java.lang.String variableName, java.lang.Object value)
-
-
-
Field Detail
-
cachedVariables
protected VariableMap cachedVariables
-
cachedVariablesLocal
protected VariableMap cachedVariablesLocal
-
execution
protected Execution execution
-
task
protected Task task
-
-
Method Detail
-
getExecution
public Execution getExecution()
-
setExecution
public void setExecution(Execution execution)
-
getTask
public Task getTask()
-
setTask
public void setTask(Task task)
-
getVariable
public <T extends TypedValue> T getVariable(java.lang.String variableName)
-
setVariable
public void setVariable(java.lang.String variableName, java.lang.Object value)
-
getCachedVariables
public VariableMap getCachedVariables()
-
getVariableLocal
public <T extends TypedValue> T getVariableLocal(java.lang.String variableName)
-
setVariableLocal
public void setVariableLocal(java.lang.String variableName, java.lang.Object value)
-
getCachedVariablesLocal
public VariableMap getCachedVariablesLocal()
-
flushVariableCache
public void flushVariableCache()
-
-