Class ScopedAssociation
- java.lang.Object
-
- org.camunda.bpm.engine.cdi.impl.context.ScopedAssociation
-
- Direct Known Subclasses:
ConversationScopedAssociation
,RequestScopedAssociation
public class ScopedAssociation extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected VariableMap
cachedVariables
protected VariableMap
cachedVariablesLocal
protected Execution
execution
protected Task
task
-
Constructor Summary
Constructors Constructor Description ScopedAssociation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
flushVariableCache()
VariableMap
getCachedVariables()
VariableMap
getCachedVariablesLocal()
Execution
getExecution()
Task
getTask()
<T extends TypedValue>
TgetVariable(String variableName)
<T extends TypedValue>
TgetVariableLocal(String variableName)
void
setExecution(Execution execution)
void
setTask(Task task)
void
setVariable(String variableName, Object value)
void
setVariableLocal(String variableName, 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(String variableName)
-
getCachedVariables
public VariableMap getCachedVariables()
-
getVariableLocal
public <T extends TypedValue> T getVariableLocal(String variableName)
-
getCachedVariablesLocal
public VariableMap getCachedVariablesLocal()
-
flushVariableCache
public void flushVariableCache()
-
-