Class VariableScopeContext
- java.lang.Object
-
- org.camunda.bpm.engine.impl.dmn.invocation.VariableScopeContext
-
- All Implemented Interfaces:
org.camunda.bpm.engine.variable.context.VariableContext
public class VariableScopeContext extends Object implements org.camunda.bpm.engine.variable.context.VariableContext
Implementation of theVariableContextinterface backed by aVariableScope.- Author:
- Daniel Meyer
-
-
Field Summary
Fields Modifier and Type Field Description protected VariableScopevariableScope
-
Constructor Summary
Constructors Constructor Description VariableScopeContext(VariableScope variableScope)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancontainsVariable(String variableName)Set<String>keySet()org.camunda.bpm.engine.variable.value.TypedValueresolve(String variableName)static VariableScopeContextwrap(VariableScope variableScope)
-
-
-
Field Detail
-
variableScope
protected final VariableScope variableScope
-
-
Constructor Detail
-
VariableScopeContext
public VariableScopeContext(VariableScope variableScope)
-
-
Method Detail
-
resolve
public org.camunda.bpm.engine.variable.value.TypedValue resolve(String variableName)
- Specified by:
resolvein interfaceorg.camunda.bpm.engine.variable.context.VariableContext
-
containsVariable
public boolean containsVariable(String variableName)
- Specified by:
containsVariablein interfaceorg.camunda.bpm.engine.variable.context.VariableContext
-
keySet
public Set<String> keySet()
- Specified by:
keySetin interfaceorg.camunda.bpm.engine.variable.context.VariableContext
-
wrap
public static VariableScopeContext wrap(VariableScope variableScope)
-
-