Uses of Class
org.camunda.bpm.engine.impl.core.variable.CoreVariableScope

Packages that use CoreVariableScope
org.camunda.bpm.engine.impl.cmmn.entity.runtime   
org.camunda.bpm.engine.impl.cmmn.execution   
org.camunda.bpm.engine.impl.connector   
org.camunda.bpm.engine.impl.core.instance   
org.camunda.bpm.engine.impl.core.mapping   
org.camunda.bpm.engine.impl.core.mapping.value   
org.camunda.bpm.engine.impl.core.variable   
org.camunda.bpm.engine.impl.el   
org.camunda.bpm.engine.impl.persistence.entity   
org.camunda.bpm.engine.impl.pvm.runtime   
org.camunda.bpm.engine.impl.scripting   
org.camunda.bpm.engine.impl.variable   
 

Uses of CoreVariableScope in org.camunda.bpm.engine.impl.cmmn.entity.runtime
 

Subclasses of CoreVariableScope in org.camunda.bpm.engine.impl.cmmn.entity.runtime
 class CaseExecutionEntity
           
 

Uses of CoreVariableScope in org.camunda.bpm.engine.impl.cmmn.execution
 

Subclasses of CoreVariableScope in org.camunda.bpm.engine.impl.cmmn.execution
 class CaseExecutionImpl
           
 class CmmnExecution
           
 

Methods in org.camunda.bpm.engine.impl.cmmn.execution that return CoreVariableScope
 CoreVariableScope CmmnExecution.getParentVariableScope()
           
 

Uses of CoreVariableScope in org.camunda.bpm.engine.impl.connector
 

Subclasses of CoreVariableScope in org.camunda.bpm.engine.impl.connector
 class ConnectorVariableScope
          Exposes a connector request as variableScope.
 

Fields in org.camunda.bpm.engine.impl.connector declared as CoreVariableScope
protected  CoreVariableScope ConnectorVariableScope.parent
           
 

Methods in org.camunda.bpm.engine.impl.connector that return CoreVariableScope
 CoreVariableScope ConnectorVariableScope.getParentVariableScope()
           
 

Methods in org.camunda.bpm.engine.impl.connector with parameters of type CoreVariableScope
 CoreVariableInstance ConnectorVariableStore.createVariableInstance(String variableName, Object value, CoreVariableScope sourceActivityExecution)
           
 CoreVariableInstance ConnectorVariableStore.removeVariableInstance(String variableName, CoreVariableScope sourceActivityExecution)
           
 void ConnectorVariableStore.setVariableInstanceValue(CoreVariableInstance variableInstance, Object value, CoreVariableScope sourceActivityExecution)
           
 

Constructors in org.camunda.bpm.engine.impl.connector with parameters of type CoreVariableScope
ConnectorVariableScope(CoreVariableScope parent)
           
 

Uses of CoreVariableScope in org.camunda.bpm.engine.impl.core.instance
 

Subclasses of CoreVariableScope in org.camunda.bpm.engine.impl.core.instance
 class CoreExecution
          Defines the base API for the execution of an activity.
 

Uses of CoreVariableScope in org.camunda.bpm.engine.impl.core.mapping
 

Methods in org.camunda.bpm.engine.impl.core.mapping with parameters of type CoreVariableScope
 void IoParameter.execute(CoreVariableScope scope)
          Execute the parameter in a given variable scope.
protected  void InputParameter.execute(CoreVariableScope innerScope, CoreVariableScope outerScope)
           
protected abstract  void IoParameter.execute(CoreVariableScope innerScope, CoreVariableScope outerScope)
           
protected  void OutputParameter.execute(CoreVariableScope innerScope, CoreVariableScope outerScope)
           
 void IoMapping.executeInputParameters(CoreVariableScope variableScope)
           
 void IoMapping.executeOutputParameters(CoreVariableScope variableScope)
           
 

Uses of CoreVariableScope in org.camunda.bpm.engine.impl.core.mapping.value
 

Methods in org.camunda.bpm.engine.impl.core.mapping.value with parameters of type CoreVariableScope
 Object ParameterValueProvider.getValue(CoreVariableScope variableScope)
           
 Object ConstantValueProvider.getValue(CoreVariableScope scope)
           
 Object MapValueProvider.getValue(CoreVariableScope variableScope)
           
 Object ListValueProvider.getValue(CoreVariableScope variableScope)
           
 Object NullValueProvider.getValue(CoreVariableScope variableScope)
           
 

Uses of CoreVariableScope in org.camunda.bpm.engine.impl.core.variable
 

Methods in org.camunda.bpm.engine.impl.core.variable that return CoreVariableScope
abstract  CoreVariableScope CoreVariableScope.getParentVariableScope()
           
protected  CoreVariableScope CoreVariableScope.getSourceActivityVariableScope()
           
 

Methods in org.camunda.bpm.engine.impl.core.variable with parameters of type CoreVariableScope
 CoreVariableInstance CoreVariableStore.createVariableInstance(String variableName, Object value, CoreVariableScope sourceActivityExecution)
           
protected  CoreVariableInstance CoreVariableScope.createVariableInstance(String variableName, Object value, CoreVariableScope sourceActivityExecution)
           
 CoreVariableInstance SimpleVariableStore.createVariableInstance(String variableName, Object value, CoreVariableScope sourceActivityExecution)
           
protected  void CoreVariableScope.createVariableLocal(String variableName, Object value, CoreVariableScope sourceActivityExecution)
          only called when a new variable is created on this variable scope.
protected  void CoreVariableScope.removeVariable(String variableName, CoreVariableScope sourceActivityExecution)
           
 CoreVariableInstance CoreVariableStore.removeVariableInstance(String variableName, CoreVariableScope sourceActivityExecution)
           
 CoreVariableInstance SimpleVariableStore.removeVariableInstance(String variableName, CoreVariableScope sourceActivityExecution)
           
protected  void CoreVariableScope.removeVariableLocal(String variableName, CoreVariableScope sourceActivityExecution)
           
protected  void CoreVariableScope.setVariable(String variableName, Object value, CoreVariableScope sourceActivityExecution)
           
 void CoreVariableStore.setVariableInstanceValue(CoreVariableInstance variableInstance, Object value, CoreVariableScope sourceActivityExecution)
           
 void SimpleVariableStore.setVariableInstanceValue(CoreVariableInstance variableInstance, Object value, CoreVariableScope sourceActivityExecution)
           
protected  void CoreVariableScope.setVariableLocal(String variableName, Object value, CoreVariableScope sourceActivityExecution)
           
protected  void CoreVariableScope.updateVariableInstance(CoreVariableInstance variableInstance, Object value, CoreVariableScope sourceActivityExecution)
           
 

Uses of CoreVariableScope in org.camunda.bpm.engine.impl.el
 

Methods in org.camunda.bpm.engine.impl.el with parameters of type CoreVariableScope
 Object ElValueProvider.getValue(CoreVariableScope variableScope)
           
 

Uses of CoreVariableScope in org.camunda.bpm.engine.impl.persistence.entity
 

Subclasses of CoreVariableScope in org.camunda.bpm.engine.impl.persistence.entity
 class ExecutionEntity
           
 class TaskEntity
           
 

Methods in org.camunda.bpm.engine.impl.persistence.entity that return CoreVariableScope
 CoreVariableScope TaskEntity.getParentVariableScope()
           
 

Uses of CoreVariableScope in org.camunda.bpm.engine.impl.pvm.runtime
 

Subclasses of CoreVariableScope in org.camunda.bpm.engine.impl.pvm.runtime
 class ExecutionImpl
           
 class PvmExecutionImpl
           
 

Methods in org.camunda.bpm.engine.impl.pvm.runtime that return CoreVariableScope
 CoreVariableScope PvmExecutionImpl.getParentVariableScope()
           
 

Uses of CoreVariableScope in org.camunda.bpm.engine.impl.scripting
 

Methods in org.camunda.bpm.engine.impl.scripting with parameters of type CoreVariableScope
 Object ScriptValueProvider.getValue(CoreVariableScope variableScope)
           
 

Uses of CoreVariableScope in org.camunda.bpm.engine.impl.variable
 

Methods in org.camunda.bpm.engine.impl.variable with parameters of type CoreVariableScope
 VariableInstanceEntity AbstractVariableStore.createVariableInstance(String variableName, Object value, CoreVariableScope sourceActivityExecution)
           
 void AbstractVariableStore.fireHistoricVariableInstanceCreate(VariableInstanceEntity variableInstance, CoreVariableScope sourceActivityExecution)
           
 void AbstractVariableStore.fireHistoricVariableInstanceDelete(VariableInstanceEntity variableInstance, CoreVariableScope sourceActivityExecution)
           
 void AbstractVariableStore.fireHistoricVariableInstanceUpdate(VariableInstanceEntity variableInstance, CoreVariableScope sourceActivityExecution)
           
 CoreVariableInstance AbstractVariableStore.removeVariableInstance(String variableName, CoreVariableScope sourceActivityExecution)
           
 void AbstractVariableStore.setVariableInstanceValue(CoreVariableInstance variableInstance, Object value, CoreVariableScope sourceActivityExecution)
           
 



Copyright © 2014 camunda services GmbH. All Rights Reserved.