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

Packages that use CoreVariableScope
org.camunda.bpm.engine.impl.cmmn.behavior   
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.behavior
 

Methods in org.camunda.bpm.engine.impl.cmmn.behavior with parameters of type CoreVariableScope
 String CallableElement.getBusinessKey(CoreVariableScope<?> variableScope)
           
 String CallableElement.getDefinitionKey(CoreVariableScope<?> variableScope)
           
 Object CallableElementParameter.getSource(CoreVariableScope<?> variableScope)
           
protected  Map<String,Object> ProcessOrCaseTaskActivityBehavior.getVariables(List<CallableElementParameter> params, CoreVariableScope<?> variableScope)
           
 Integer CallableElement.getVersion(CoreVariableScope<?> variableScope)
           
 

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
           
 

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<CoreVariableInstance> ConnectorVariableScope.parent
           
 

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

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

Constructors in org.camunda.bpm.engine.impl.connector with parameters of type CoreVariableScope
ConnectorVariableScope(CoreVariableScope<CoreVariableInstance> 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  void InputParameter.execute(CoreVariableScope<?> innerScope, CoreVariableScope<?> outerScope)
           
protected abstract  void IoParameter.execute(CoreVariableScope<?> innerScope, CoreVariableScope<?> outerScope)
           
protected abstract  void IoParameter.execute(CoreVariableScope<?> innerScope, CoreVariableScope<?> outerScope)
           
protected  void OutputParameter.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 ListValueProvider.getValue(CoreVariableScope variableScope)
           
 Object ParameterValueProvider.getValue(CoreVariableScope<?> variableScope)
           
 Object ConstantValueProvider.getValue(CoreVariableScope<?> scope)
           
 Object MapValueProvider.getValue(CoreVariableScope<?> variableScope)
           
 Object NullValueProvider.getValue(CoreVariableScope<?> variableScope)
           
 

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

Subclasses of CoreVariableScope in org.camunda.bpm.engine.impl.core.variable
 class CorePersistentVariableScope
           
 

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

Methods in org.camunda.bpm.engine.impl.core.variable with parameters of type CoreVariableScope
 void CoreVariableStore.createOrUpdateVariable(String variableName, Object value, CoreVariableScope<T> sourceActivityExecution)
           
 void PseudoPersistentVariableStore.createOrUpdateVariableFromSerialized(String variableName, Object value, String variableTypeName, Map<String,Object> configuration, CoreVariableScope<PersistentVariableInstance> sourceActivityExecution)
           
 void CorePersistentVariableStore.createOrUpdateVariableFromSerialized(String variableName, Object value, String variableTypeName, Map<String,Object> configuration, CoreVariableScope<PersistentVariableInstance> sourceActivityExecution)
           
 CoreVariableInstance SimpleVariableStore.createVariableInstance(String variableName, Object value, CoreVariableScope<CoreVariableInstance> sourceActivityExecution)
           
 PersistentVariableInstance PseudoPersistentVariableStore.createVariableInstance(String variableName, Object value, CoreVariableScope<PersistentVariableInstance> sourceActivityExecution)
           
 PersistentVariableInstance PseudoPersistentVariableStore.createVariableInstanceFromSerialized(String variableName, Object value, String variableTypeName, Map<String,Object> configuration, CoreVariableScope<PersistentVariableInstance> sourceActivityExecution)
           
 PersistentVariableInstance CorePersistentVariableStore.createVariableInstanceFromSerialized(String variableName, Object value, String variableTypeName, Map<String,Object> configuration, CoreVariableScope<PersistentVariableInstance> sourceActivityExecution)
           
protected  void CorePersistentVariableScope.createVariableLocalFromSerialized(String variableName, Object value, String variableTypeName, Map<String,Object> configuration, CoreVariableScope<PersistentVariableInstance> sourceActivityExecution)
           
protected  void CoreVariableScope.removeVariable(String variableName, CoreVariableScope<T> sourceActivityExecution)
           
 T CoreVariableStore.removeVariableInstance(String variableName, CoreVariableScope<T> sourceActivityExecution)
           
 T MapBasedVariableStore.removeVariableInstance(String variableName, CoreVariableScope<T> sourceActivityExecution)
           
protected  void CoreVariableScope.removeVariableLocal(String variableName, CoreVariableScope<T> sourceActivityExecution)
           
protected  void CoreVariableScope.setVariable(String variableName, Object value, CoreVariableScope<T> sourceActivityExecution)
           
protected  void CorePersistentVariableScope.setVariableFromSerialized(String variableName, Object value, String variableTypeName, Map<String,Object> configuration, CoreVariableScope<PersistentVariableInstance> sourceActivityExecution)
           
 void SimpleVariableStore.setVariableInstanceValue(CoreVariableInstance variableInstance, Object value, CoreVariableScope<CoreVariableInstance> sourceActivityExecution)
           
 void PseudoPersistentVariableStore.setVariableInstanceValue(PersistentVariableInstance variableInstance, Object value, CoreVariableScope<PersistentVariableInstance> sourceActivityExecution)
           
 void CoreVariableScope.setVariableLocal(String variableName, Object value, CoreVariableScope<T> sourceActivityExecution)
           
protected  void CorePersistentVariableScope.setVariableLocalFromSerialized(String variableName, Object value, String variableTypeName, Map<String,Object> configuration, CoreVariableScope<PersistentVariableInstance> 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
           
 

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
           
 

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
 void AbstractVariableStore.createOrUpdateVariable(String variableName, Object value, CoreVariableScope<T> sourceActivityExecution)
           
 void AbstractPersistentVariableStore.createOrUpdateVariableFromSerialized(String variableName, Object value, String variableTypeName, Map<String,Object> configuration, CoreVariableScope<PersistentVariableInstance> sourceActivityExecution)
           
 PersistentVariableInstance AbstractPersistentVariableStore.createVariableInstance(String variableName, Object value, CoreVariableScope<PersistentVariableInstance> sourceActivityExecution)
           
protected abstract  T AbstractVariableStore.createVariableInstance(String variableName, Object value, CoreVariableScope<T> sourceActivityExecution)
           
 PersistentVariableInstance AbstractPersistentVariableStore.createVariableInstanceFromSerialized(String variableName, Object value, String variableTypeName, Map<String,Object> configuration, CoreVariableScope<PersistentVariableInstance> sourceActivityExecution)
           
 void AbstractPersistentVariableStore.fireHistoricVariableInstanceCreate(VariableInstanceEntity variableInstance, CoreVariableScope<PersistentVariableInstance> sourceActivityExecution)
           
 void AbstractPersistentVariableStore.fireHistoricVariableInstanceDelete(VariableInstanceEntity variableInstance, CoreVariableScope<PersistentVariableInstance> sourceActivityExecution)
           
 void AbstractPersistentVariableStore.fireHistoricVariableInstanceUpdate(VariableInstanceEntity variableInstance, CoreVariableScope<PersistentVariableInstance> sourceActivityExecution)
           
 PersistentVariableInstance AbstractPersistentVariableStore.removeVariableInstance(String variableName, CoreVariableScope<PersistentVariableInstance> sourceActivityExecution)
           
 void AbstractPersistentVariableStore.setVariableInstanceValue(PersistentVariableInstance variableInstance, Object value, CoreVariableScope<PersistentVariableInstance> sourceActivityExecution)
           
protected abstract  void AbstractVariableStore.setVariableInstanceValue(T variableInstance, Object value, CoreVariableScope<T> sourceActivityExecution)
           
 void AbstractPersistentVariableStore.setVariableInstanceValueFromSerialized(PersistentVariableInstance variableInstance, Object value, String variableTypeName, Map<String,Object> configuration, CoreVariableScope<PersistentVariableInstance> sourceActivityExecution)
           
 



Copyright © 2014 camunda services GmbH. All Rights Reserved.