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 org.camunda.bpm.engine.variable.VariableMapcachedVariablesprotected org.camunda.bpm.engine.variable.VariableMapcachedVariablesLocalprotected org.camunda.bpm.engine.runtime.Executionexecutionprotected org.camunda.bpm.engine.task.Tasktask
-
Constructor Summary
Constructors Constructor Description ScopedAssociation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidflushVariableCache()org.camunda.bpm.engine.variable.VariableMapgetCachedVariables()org.camunda.bpm.engine.variable.VariableMapgetCachedVariablesLocal()org.camunda.bpm.engine.runtime.ExecutiongetExecution()org.camunda.bpm.engine.task.TaskgetTask()<T extends org.camunda.bpm.engine.variable.value.TypedValue>
TgetVariable(String variableName)<T extends org.camunda.bpm.engine.variable.value.TypedValue>
TgetVariableLocal(String variableName)voidsetExecution(org.camunda.bpm.engine.runtime.Execution execution)voidsetTask(org.camunda.bpm.engine.task.Task task)voidsetVariable(String variableName, Object value)voidsetVariableLocal(String variableName, Object value)
-
-
-
Field Detail
-
cachedVariables
protected org.camunda.bpm.engine.variable.VariableMap cachedVariables
-
cachedVariablesLocal
protected org.camunda.bpm.engine.variable.VariableMap cachedVariablesLocal
-
execution
protected org.camunda.bpm.engine.runtime.Execution execution
-
task
protected org.camunda.bpm.engine.task.Task task
-
-
Method Detail
-
getExecution
public org.camunda.bpm.engine.runtime.Execution getExecution()
-
setExecution
public void setExecution(org.camunda.bpm.engine.runtime.Execution execution)
-
getTask
public org.camunda.bpm.engine.task.Task getTask()
-
setTask
public void setTask(org.camunda.bpm.engine.task.Task task)
-
getVariable
public <T extends org.camunda.bpm.engine.variable.value.TypedValue> T getVariable(String variableName)
-
getCachedVariables
public org.camunda.bpm.engine.variable.VariableMap getCachedVariables()
-
getVariableLocal
public <T extends org.camunda.bpm.engine.variable.value.TypedValue> T getVariableLocal(String variableName)
-
getCachedVariablesLocal
public org.camunda.bpm.engine.variable.VariableMap getCachedVariablesLocal()
-
flushVariableCache
public void flushVariableCache()
-
-