Uses of Interface
org.camunda.bpm.engine.delegate.VariableScope

Packages that use VariableScope
org.camunda.bpm.engine.delegate Interfaces used to include Java code in a process as the behavior of an activity or as a listener to process events with JavaDelegates. 
org.camunda.bpm.engine.impl.bpmn.behavior   
org.camunda.bpm.engine.impl.cmd   
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.core.instance   
org.camunda.bpm.engine.impl.core.model   
org.camunda.bpm.engine.impl.core.variable.mapping.value   
org.camunda.bpm.engine.impl.core.variable.scope   
org.camunda.bpm.engine.impl.delegate   
org.camunda.bpm.engine.impl.el   
org.camunda.bpm.engine.impl.form.engine   
org.camunda.bpm.engine.impl.form.handler   
org.camunda.bpm.engine.impl.form.validator   
org.camunda.bpm.engine.impl.history.producer   
org.camunda.bpm.engine.impl.persistence.entity   
org.camunda.bpm.engine.impl.pvm.delegate   
org.camunda.bpm.engine.impl.pvm.runtime   
org.camunda.bpm.engine.impl.scripting   
org.camunda.bpm.engine.impl.scripting.engine   
org.camunda.bpm.engine.impl.scripting.env   
org.camunda.bpm.engine.impl.task   
org.camunda.bpm.engine.impl.util   
org.camunda.bpm.engine.impl.variable   
org.camunda.bpm.engine.test.mock   
 

Uses of VariableScope in org.camunda.bpm.engine.delegate
 

Subinterfaces of VariableScope in org.camunda.bpm.engine.delegate
 interface BaseDelegateExecution
           
 interface DelegateCaseExecution
           
 interface DelegateExecution
          Execution used in JavaDelegates and ExecutionListeners.
 interface DelegateTask
           
 

Methods in org.camunda.bpm.engine.delegate with parameters of type VariableScope
 Object Expression.getValue(VariableScope variableScope)
           
 void Expression.setValue(Object value, VariableScope variableScope)
           
 

Uses of VariableScope in org.camunda.bpm.engine.impl.bpmn.behavior
 

Methods in org.camunda.bpm.engine.impl.bpmn.behavior with parameters of type VariableScope
 void CallableElementActivityBehavior.completing(VariableScope execution, VariableScope subInstance)
           
protected  VariableMap CallableElementActivityBehavior.getOutputVariables(VariableScope variableScope)
           
 

Uses of VariableScope in org.camunda.bpm.engine.impl.cmd
 

Methods in org.camunda.bpm.engine.impl.cmd with parameters of type VariableScope
protected  TypedValue AbstractGetFormVariablesCmd.createVariable(FormField formField, VariableScope variableScope)
           
 

Uses of VariableScope in org.camunda.bpm.engine.impl.cmmn.behavior
 

Methods in org.camunda.bpm.engine.impl.cmmn.behavior with parameters of type VariableScope
protected  VariableMap ProcessOrCaseTaskActivityBehavior.getOutputVariables(VariableScope variableScope)
           
 void ProcessOrCaseTaskActivityBehavior.transferVariables(VariableScope from, VariableScope to)
           
 void TransferVariablesActivityBehavior.transferVariables(VariableScope from, VariableScope to)
           
 

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

Classes in org.camunda.bpm.engine.impl.cmmn.entity.runtime that implement VariableScope
 class CaseExecutionEntity
           
 

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

Subinterfaces of VariableScope in org.camunda.bpm.engine.impl.cmmn.execution
 interface CmmnActivityExecution
           
 interface CmmnCaseInstance
           
 

Classes in org.camunda.bpm.engine.impl.cmmn.execution that implement VariableScope
 class CaseExecutionImpl
           
 class CmmnExecution
           
 

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

Classes in org.camunda.bpm.engine.impl.core.instance that implement VariableScope
 class CoreExecution
          Defines the base API for the execution of an activity.
 

Uses of VariableScope in org.camunda.bpm.engine.impl.core.model
 

Methods in org.camunda.bpm.engine.impl.core.model with parameters of type VariableScope
 String CallableElement.getBusinessKey(VariableScope variableScope)
           
 String CallableElement.getDefinitionKey(VariableScope variableScope)
           
 VariableMap CallableElement.getInputVariables(VariableScope variableScope)
           
 VariableMap CallableElement.getOutputVariables(VariableScope variableScope)
           
 Object CallableElementParameter.getSource(VariableScope variableScope)
           
protected  VariableMap CallableElement.getVariables(List<CallableElementParameter> params, VariableScope variableScope)
           
 Integer CallableElement.getVersion(VariableScope variableScope)
           
 

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

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

Uses of VariableScope in org.camunda.bpm.engine.impl.core.variable.scope
 

Classes in org.camunda.bpm.engine.impl.core.variable.scope that implement VariableScope
 class AbstractVariableScope
           
 

Uses of VariableScope in org.camunda.bpm.engine.impl.delegate
 

Fields in org.camunda.bpm.engine.impl.delegate declared as VariableScope
protected  VariableScope ScriptInvocation.scope
           
 

Constructors in org.camunda.bpm.engine.impl.delegate with parameters of type VariableScope
ScriptInvocation(ExecutableScript script, VariableScope scope)
           
 

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

Classes in org.camunda.bpm.engine.impl.el that implement VariableScope
 class StartProcessVariableScope
          Variable-scope only used to resolve variables when NO execution is active but expression-resolving is needed.
 

Methods in org.camunda.bpm.engine.impl.el with parameters of type VariableScope
protected  ProcessEngineElContext ExpressionManager.createElContext(VariableScope variableScope)
           
 ELContext ExpressionManager.getElContext(VariableScope variableScope)
           
 Object Expression.getValue(VariableScope variableScope)
           
 Object FixedValue.getValue(VariableScope variableScope)
           
 Object ElValueProvider.getValue(VariableScope variableScope)
           
 Object JuelExpression.getValue(VariableScope variableScope)
           
 void Expression.setValue(Object value, VariableScope variableScope)
           
 void FixedValue.setValue(Object value, VariableScope variableScope)
           
 void JuelExpression.setValue(Object value, VariableScope variableScope)
           
 

Uses of VariableScope in org.camunda.bpm.engine.impl.form.engine
 

Methods in org.camunda.bpm.engine.impl.form.engine with parameters of type VariableScope
protected  Object JuelFormEngine.executeScript(String scriptSrc, VariableScope scope)
           
 

Uses of VariableScope in org.camunda.bpm.engine.impl.form.handler
 

Fields in org.camunda.bpm.engine.impl.form.handler declared as VariableScope
protected  VariableScope DefaultFormFieldValidatorContext.variableScope
           
protected  VariableScope SubmitFormVariablesInvocation.variableScope
           
 

Methods in org.camunda.bpm.engine.impl.form.handler that return VariableScope
 VariableScope DefaultFormFieldValidatorContext.getVariableScope()
           
 

Methods in org.camunda.bpm.engine.impl.form.handler with parameters of type VariableScope
protected  void DefaultFormHandler.fireFormPropertyHistoryEvents(VariableMap properties, VariableScope variableScope)
           
 void FormFieldHandler.handleSubmit(VariableScope variableScope, VariableMap values, VariableMap allValues)
           
 void FormPropertyHandler.submitFormProperty(VariableScope variableScope, VariableMap variables)
           
 void FormHandler.submitFormVariables(VariableMap properties, VariableScope variableScope)
           
 void DelegateFormHandler.submitFormVariables(VariableMap properties, VariableScope variableScope)
           
 void DefaultFormHandler.submitFormVariables(VariableMap properties, VariableScope variableScope)
           
 void FormFieldValidationConstraintHandler.validate(Object submittedValue, VariableMap submittedValues, FormFieldHandler formFieldHandler, VariableScope variableScope)
           
 

Constructors in org.camunda.bpm.engine.impl.form.handler with parameters of type VariableScope
DefaultFormFieldValidatorContext(VariableScope variableScope, String configuration, VariableMap submittedValues, FormFieldHandler formFieldHandler)
           
SubmitFormVariablesInvocation(FormHandler formHandler, VariableMap properties, VariableScope variableScope)
           
 

Uses of VariableScope in org.camunda.bpm.engine.impl.form.validator
 

Methods in org.camunda.bpm.engine.impl.form.validator that return VariableScope
 VariableScope FormFieldValidatorContext.getVariableScope()
           
 

Uses of VariableScope in org.camunda.bpm.engine.impl.history.producer
 

Methods in org.camunda.bpm.engine.impl.history.producer with parameters of type VariableScope
 HistoryEvent DefaultHistoryEventProducer.createHistoricVariableCreateEvt(VariableInstanceEntity variableInstance, VariableScope sourceVariableScope)
           
 HistoryEvent HistoryEventProducer.createHistoricVariableCreateEvt(VariableInstanceEntity variableInstance, VariableScope sourceVariableScope)
          Creates the history event fired when a variable is created.
 HistoryEvent DefaultHistoryEventProducer.createHistoricVariableDeleteEvt(VariableInstanceEntity variableInstance, VariableScope sourceVariableScope)
           
 HistoryEvent HistoryEventProducer.createHistoricVariableDeleteEvt(VariableInstanceEntity variableInstance, VariableScope sourceVariableScope)
          Creates the history event fired when a variable is deleted.
protected  HistoryEvent DefaultHistoryEventProducer.createHistoricVariableEvent(VariableInstanceEntity variableInstance, VariableScope sourceVariableScope, HistoryEventType eventType)
           
 HistoryEvent DefaultHistoryEventProducer.createHistoricVariableUpdateEvt(VariableInstanceEntity variableInstance, VariableScope sourceVariableScope)
           
 HistoryEvent HistoryEventProducer.createHistoricVariableUpdateEvt(VariableInstanceEntity variableInstance, VariableScope sourceVariableScope)
          Creates the history event fired when a variable is updated.
 

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

Classes in org.camunda.bpm.engine.impl.persistence.entity that implement VariableScope
 class ExecutionEntity
           
 class TaskEntity
           
 

Methods in org.camunda.bpm.engine.impl.persistence.entity with parameters of type VariableScope
static TaskEntity TaskEntity.createAndInsert(VariableScope execution)
          creates and initializes a new persistent task.
 

Uses of VariableScope in org.camunda.bpm.engine.impl.pvm.delegate
 

Subinterfaces of VariableScope in org.camunda.bpm.engine.impl.pvm.delegate
 interface ActivityExecution
           
 

Methods in org.camunda.bpm.engine.impl.pvm.delegate with parameters of type VariableScope
 void SubProcessActivityBehavior.completing(VariableScope execution, VariableScope subProcessInstance)
          called before the process instance is destroyed to allow this activity to extract data from the sub process instance.
 

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

Classes in org.camunda.bpm.engine.impl.pvm.runtime that implement VariableScope
 class ExecutionImpl
           
 class PvmExecutionImpl
           
 

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

Methods in org.camunda.bpm.engine.impl.scripting with parameters of type VariableScope
protected  String DynamicExecutableScript.evaluateExpression(VariableScope variableScope)
           
 Object ResourceExecutableScript.execute(ScriptEngine engine, VariableScope variableScope, Bindings bindings)
           
abstract  Object ExecutableScript.execute(ScriptEngine scriptEngine, VariableScope variableScope, Bindings bindings)
          Evaluates the script using the provided engine and bindings
 Object SourceExecutableScript.execute(ScriptEngine engine, VariableScope variableScope, Bindings bindings)
           
 Object DynamicExecutableScript.execute(ScriptEngine scriptEngine, VariableScope variableScope, Bindings bindings)
           
 String DynamicSourceExecutableScript.getScriptSource(VariableScope variableScope)
           
abstract  String DynamicExecutableScript.getScriptSource(VariableScope variableScope)
           
 String DynamicResourceExecutableScript.getScriptSource(VariableScope variableScope)
           
 Object ScriptValueProvider.getValue(VariableScope variableScope)
           
 

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

Fields in org.camunda.bpm.engine.impl.scripting.engine declared as VariableScope
protected  VariableScope ScriptBindings.variableScope
           
protected  VariableScope VariableScopeResolver.variableScope
           
 

Methods in org.camunda.bpm.engine.impl.scripting.engine with parameters of type VariableScope
 Bindings ScriptingEngines.createBindings(ScriptEngine scriptEngine, VariableScope variableScope)
          override to build a spring aware ScriptingEngines
 Bindings ScriptBindingsFactory.createBindings(VariableScope variableScope, Bindings engineBindings)
           
 Resolver ResolverFactory.createResolver(VariableScope variableScope)
           
 Resolver VariableScopeResolverFactory.createResolver(VariableScope variableScope)
           
 Resolver BeansResolverFactory.createResolver(VariableScope variableScope)
           
 

Constructors in org.camunda.bpm.engine.impl.scripting.engine with parameters of type VariableScope
ScriptBindings(List<Resolver> scriptResolvers, VariableScope variableScope, Bindings wrappedBindings)
           
VariableScopeResolver(VariableScope variableScope)
           
 

Uses of VariableScope in org.camunda.bpm.engine.impl.scripting.env
 

Methods in org.camunda.bpm.engine.impl.scripting.env with parameters of type VariableScope
 Object ScriptingEnvironment.execute(ExecutableScript script, VariableScope scope)
          execute a given script in the environment
 Object ScriptingEnvironment.execute(ExecutableScript script, VariableScope scope, Bindings bindings, ScriptEngine scriptEngine)
           
 

Uses of VariableScope in org.camunda.bpm.engine.impl.task
 

Methods in org.camunda.bpm.engine.impl.task with parameters of type VariableScope
 void TaskDecorator.decorate(TaskEntity task, VariableScope variableScope)
           
protected  void TaskDecorator.initializeTaskAssignee(TaskEntity task, VariableScope variableScope)
           
protected  void TaskDecorator.initializeTaskAssignments(TaskEntity task, VariableScope variableScope)
           
protected  void TaskDecorator.initializeTaskCandidateGroups(TaskEntity task, VariableScope variableScope)
           
protected  void TaskDecorator.initializeTaskCandidateUsers(TaskEntity task, VariableScope variableScope)
           
protected  void TaskDecorator.initializeTaskDescription(TaskEntity task, VariableScope variableScope)
           
protected  void TaskDecorator.initializeTaskDueDate(TaskEntity task, VariableScope variableScope)
           
protected  void TaskDecorator.initializeTaskFollowUpDate(TaskEntity task, VariableScope variableScope)
           
protected  void TaskDecorator.initializeTaskName(TaskEntity task, VariableScope variableScope)
           
protected  void TaskDecorator.initializeTaskPriority(TaskEntity task, VariableScope variableScope)
           
 

Uses of VariableScope in org.camunda.bpm.engine.impl.util
 

Methods in org.camunda.bpm.engine.impl.util with parameters of type VariableScope
static CmmnCaseDefinition CallableElementUtil.getCaseDefinitionToCall(VariableScope execution, CallableElement callableElement)
           
static ProcessDefinitionImpl CallableElementUtil.getProcessDefinitionToCall(VariableScope execution, CallableElement callableElement)
           
 

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

Methods in org.camunda.bpm.engine.impl.variable with parameters of type VariableScope
 void VariableDeclaration.destroy(VariableScope innerScopeInstance, VariableScope outerScopeInstance)
          Deprecated.  
 void VariableDeclaration.initialize(VariableScope innerScopeInstance, VariableScope outerScopeInstance)
          Deprecated.  
 

Uses of VariableScope in org.camunda.bpm.engine.test.mock
 

Methods in org.camunda.bpm.engine.test.mock with parameters of type VariableScope
protected  ELResolver MockExpressionManager.createElResolver(VariableScope scope)
           
 



Copyright © 2015 camunda services GmbH. All rights reserved.