Uses of Interface
org.camunda.bpm.engine.variable.VariableMap

Packages that use VariableMap
org.camunda.bpm.engine Public API of the camunda BPM engine.

Typical usage of the API starts by the creation of a ProcessEngineConfiguration (typically based on a configuration file), from which a ProcessEngine can be obtained.

Through the services obtained from such a ProcessEngine, BPM and workflow operation can be executed:

RepositoryService: Manages Deployments
RuntimeService: For starting and searching ProcessInstances
TaskService: Exposes operations to manage human (standalone) Tasks, such as claiming, completing and assigning tasks
IdentityService: Used for managing Users, Groups and the relations between them
ManagementService: Exposes engine admin and maintenance operations, which have no relation to the runtime execution of business processes
HistoryService: Exposes information about ongoing and past process instances.
FormService: Access to form data and rendered forms for starting new process instances and completing tasks.
 
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 API implementation classes, which shouldn't directly be used by end-users. 
org.camunda.bpm.engine.impl.bpmn.behavior   
org.camunda.bpm.engine.impl.cmd   
org.camunda.bpm.engine.impl.cmmn   
org.camunda.bpm.engine.impl.cmmn.behavior   
org.camunda.bpm.engine.impl.cmmn.cmd   
org.camunda.bpm.engine.impl.core.model   
org.camunda.bpm.engine.impl.core.variable   
org.camunda.bpm.engine.impl.el   
org.camunda.bpm.engine.impl.form   
org.camunda.bpm.engine.impl.form.handler   
org.camunda.bpm.engine.impl.persistence.entity   
org.camunda.bpm.engine.impl.persistence.entity.util   
org.camunda.bpm.engine.variable   
 

Uses of VariableMap in org.camunda.bpm.engine
 

Methods in org.camunda.bpm.engine that return VariableMap
 VariableMap FormService.getStartFormVariables(String processDefinitionId)
          Retrieves a list of all variables for rendering a start from.
 VariableMap FormService.getStartFormVariables(String processDefinitionId, Collection<String> formVariables, boolean deserializeObjectValues)
          Retrieves a list of requested variables for rendering a start from.
 VariableMap FormService.getTaskFormVariables(String taskId)
          Retrieves a list of all variables for rendering a task form.
 VariableMap FormService.getTaskFormVariables(String taskId, Collection<String> formVariables, boolean deserializeObjectValues)
          Retrieves a list of requested variables for rendering a task form.
 VariableMap RuntimeService.getVariablesLocalTyped(String executionId)
          All variable values that are defined in the execution scope, without taking outer scopes into account.
 VariableMap CaseService.getVariablesLocalTyped(String caseExecutionId)
          All variable values that are defined in the case execution scope, without taking outer scopes into account.
 VariableMap TaskService.getVariablesLocalTyped(String taskId)
          Get all variables and search only in the task scope.
 VariableMap RuntimeService.getVariablesLocalTyped(String executionId, boolean deserializeValues)
          All variable values that are defined in the execution scope, without taking outer scopes into account.
 VariableMap CaseService.getVariablesLocalTyped(String caseExecutionId, boolean deserializeValues)
          All variable values that are defined in the case execution scope, without taking outer scopes into account.
 VariableMap TaskService.getVariablesLocalTyped(String taskId, boolean deserializeValues)
          Get all variables and search only in the task scope.
 VariableMap RuntimeService.getVariablesLocalTyped(String executionId, Collection<String> variableNames, boolean deserializeValues)
          The variable values for the given variableNames only taking the given execution scope into account, not looking in outer scopes.
 VariableMap CaseService.getVariablesLocalTyped(String caseExecutionId, Collection<String> variableNames, boolean deserializeValues)
          The variable values for the given variableNames only taking the given case execution scope into account, not looking in outer scopes.
 VariableMap TaskService.getVariablesLocalTyped(String taskId, Collection<String> variableNames, boolean deserializeValues)
          Get values for all given variableName.
 VariableMap RuntimeService.getVariablesTyped(String executionId)
          All variables visible from the given execution scope (including parent scopes).
 VariableMap CaseService.getVariablesTyped(String caseExecutionId)
          All variables visible from the given execution scope (including parent scopes).
 VariableMap TaskService.getVariablesTyped(String taskId)
          Get all variables and search in the task scope and if available also the execution scopes.
 VariableMap RuntimeService.getVariablesTyped(String executionId, boolean deserializeValues)
          All variables visible from the given execution scope (including parent scopes).
 VariableMap CaseService.getVariablesTyped(String caseExecutionId, boolean deserializeValues)
          All variables visible from the given execution scope (including parent scopes).
 VariableMap TaskService.getVariablesTyped(String taskId, boolean deserializeValues)
          Get all variables and search in the task scope and if available also the execution scopes.
 VariableMap RuntimeService.getVariablesTyped(String executionId, Collection<String> variableNames, boolean deserializeValues)
          The variable values for all given variableNames, takes all variables into account which are visible from the given execution scope (including parent scopes).
 VariableMap CaseService.getVariablesTyped(String caseExecutionId, Collection<String> variableNames, boolean deserializeValues)
          The variable values for all given variableNames, takes all variables into account which are visible from the given case execution scope (including parent scopes).
 VariableMap TaskService.getVariablesTyped(String taskId, Collection<String> variableNames, boolean deserializeValues)
          Get values for all given variableName
 

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

Methods in org.camunda.bpm.engine.delegate that return VariableMap
 VariableMap VariableScope.getVariablesLocalTyped()
           
 VariableMap VariableScope.getVariablesLocalTyped(boolean deserializeValues)
           
 VariableMap VariableScope.getVariablesTyped()
           
 VariableMap VariableScope.getVariablesTyped(boolean deserializeValues)
           
 

Uses of VariableMap in org.camunda.bpm.engine.impl
 

Fields in org.camunda.bpm.engine.impl declared as VariableMap
protected  VariableMap ProcessInstanceModificationBuilderImpl.processVariables
           
 

Methods in org.camunda.bpm.engine.impl that return VariableMap
 VariableMap ProcessInstanceModificationBuilderImpl.getProcessVariables()
           
 VariableMap FormServiceImpl.getStartFormVariables(String processDefinitionId)
           
 VariableMap FormServiceImpl.getStartFormVariables(String processDefinitionId, Collection<String> formVariables, boolean deserializeObjectValues)
           
 VariableMap FormServiceImpl.getTaskFormVariables(String taskId)
           
 VariableMap FormServiceImpl.getTaskFormVariables(String taskId, Collection<String> formVariables, boolean deserializeObjectValues)
           
 VariableMap RuntimeServiceImpl.getVariables(String executionId)
           
 VariableMap TaskServiceImpl.getVariables(String executionId)
           
 VariableMap RuntimeServiceImpl.getVariables(String executionId, Collection<String> variableNames)
           
 VariableMap TaskServiceImpl.getVariables(String executionId, Collection<String> variableNames)
           
 VariableMap RuntimeServiceImpl.getVariablesLocal(String executionId)
           
 VariableMap TaskServiceImpl.getVariablesLocal(String taskId)
           
 VariableMap RuntimeServiceImpl.getVariablesLocal(String executionId, Collection<String> variableNames)
           
 VariableMap TaskServiceImpl.getVariablesLocal(String executionId, Collection<String> variableNames)
           
 VariableMap RuntimeServiceImpl.getVariablesLocalTyped(String executionId)
           
 VariableMap TaskServiceImpl.getVariablesLocalTyped(String taskId)
           
 VariableMap RuntimeServiceImpl.getVariablesLocalTyped(String executionId, boolean deserializeObjectValues)
           
 VariableMap TaskServiceImpl.getVariablesLocalTyped(String taskId, boolean deserializeValues)
           
 VariableMap RuntimeServiceImpl.getVariablesLocalTyped(String executionId, Collection<String> variableNames, boolean deserializeObjectValues)
           
 VariableMap TaskServiceImpl.getVariablesLocalTyped(String executionId, Collection<String> variableNames, boolean deserializeValues)
           
 VariableMap RuntimeServiceImpl.getVariablesTyped(String executionId)
           
 VariableMap TaskServiceImpl.getVariablesTyped(String executionId)
           
 VariableMap RuntimeServiceImpl.getVariablesTyped(String executionId, boolean deserializeObjectValues)
           
 VariableMap TaskServiceImpl.getVariablesTyped(String taskId, boolean deserializeValues)
           
 VariableMap RuntimeServiceImpl.getVariablesTyped(String executionId, Collection<String> variableNames, boolean deserializeObjectValues)
           
 VariableMap TaskServiceImpl.getVariablesTyped(String executionId, Collection<String> variableNames, boolean deserializeValues)
           
 

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

Methods in org.camunda.bpm.engine.impl.bpmn.behavior that return VariableMap
protected  VariableMap CallableElementActivityBehavior.getInputVariables(ActivityExecution execution)
           
protected  VariableMap CallableElementActivityBehavior.getOutputVariables(VariableScope variableScope)
           
 

Methods in org.camunda.bpm.engine.impl.bpmn.behavior with parameters of type VariableMap
protected  void CallActivityBehavior.startInstance(ActivityExecution execution, VariableMap variables, String businessKey)
           
protected  void CaseCallActivityBehavior.startInstance(ActivityExecution execution, VariableMap variables, String businessKey)
           
protected abstract  void CallableElementActivityBehavior.startInstance(ActivityExecution execution, VariableMap variables, String businessKey)
           
 

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

Fields in org.camunda.bpm.engine.impl.cmd declared as VariableMap
protected  VariableMap SubmitTaskFormCmd.properties
           
protected  VariableMap SubmitStartFormCmd.variables
           
protected  VariableMap AbstractInstantiationCmd.variables
           
protected  VariableMap AbstractInstantiationCmd.variablesLocal
           
 

Methods in org.camunda.bpm.engine.impl.cmd that return VariableMap
 VariableMap GetExecutionVariablesCmd.execute(CommandContext commandContext)
           
 VariableMap GetTaskVariablesCmd.execute(CommandContext commandContext)
           
 VariableMap GetTaskFormVariablesCmd.execute(CommandContext commandContext)
           
 VariableMap GetStartFormVariablesCmd.execute(CommandContext commandContext)
           
 VariableMap AbstractInstantiationCmd.getVariables()
           
 VariableMap AbstractInstantiationCmd.getVariablesLocal()
           
 

Uses of VariableMap in org.camunda.bpm.engine.impl.cmmn
 

Fields in org.camunda.bpm.engine.impl.cmmn declared as VariableMap
protected  VariableMap CaseInstanceBuilderImpl.variables
           
 

Methods in org.camunda.bpm.engine.impl.cmmn that return VariableMap
protected  VariableMap CaseServiceImpl.getCaseExecutionVariables(String caseExecutionId, Collection<String> variableNames, boolean isLocal, boolean deserializeValues)
           
 VariableMap CaseExecutionCommandBuilderImpl.getVariables()
           
 VariableMap CaseInstanceBuilderImpl.getVariables()
           
 VariableMap CaseServiceImpl.getVariables(String caseExecutionId)
           
 VariableMap CaseServiceImpl.getVariables(String caseExecutionId, Collection<String> variableNames)
           
 VariableMap CaseExecutionCommandBuilderImpl.getVariablesLocal()
           
 VariableMap CaseServiceImpl.getVariablesLocal(String caseExecutionId)
           
 VariableMap CaseServiceImpl.getVariablesLocal(String caseExecutionId, Collection<String> variableNames)
           
 VariableMap CaseServiceImpl.getVariablesLocalTyped(String caseExecutionId)
           
 VariableMap CaseServiceImpl.getVariablesLocalTyped(String caseExecutionId, boolean deserializeValues)
           
 VariableMap CaseServiceImpl.getVariablesLocalTyped(String caseExecutionId, Collection<String> variableNames, boolean deserializeValues)
           
 VariableMap CaseServiceImpl.getVariablesTyped(String caseExecutionId)
           
 VariableMap CaseServiceImpl.getVariablesTyped(String caseExecutionId, boolean deserializeValues)
           
 VariableMap CaseServiceImpl.getVariablesTyped(String caseExecutionId, Collection<String> variableNames, boolean deserializeValues)
           
 

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

Methods in org.camunda.bpm.engine.impl.cmmn.behavior that return VariableMap
protected  VariableMap ProcessOrCaseTaskActivityBehavior.getInputVariables(CmmnActivityExecution execution)
           
protected  VariableMap ProcessOrCaseTaskActivityBehavior.getOutputVariables(VariableScope variableScope)
           
 

Uses of VariableMap in org.camunda.bpm.engine.impl.cmmn.cmd
 

Methods in org.camunda.bpm.engine.impl.cmmn.cmd that return VariableMap
 VariableMap GetCaseExecutionVariablesCmd.execute(CommandContext commandContext)
           
 

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

Methods in org.camunda.bpm.engine.impl.core.model that return VariableMap
 VariableMap CallableElement.getInputVariables(VariableScope variableScope)
           
 VariableMap CallableElement.getOutputVariables(VariableScope variableScope)
           
protected  VariableMap CallableElement.getVariables(List<CallableElementParameter> params, VariableScope variableScope)
           
 

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

Classes in org.camunda.bpm.engine.impl.core.variable that implement VariableMap
 class VariableMapImpl
           
 

Methods in org.camunda.bpm.engine.impl.core.variable that return VariableMap
 VariableMap VariableMapImpl.putValue(String name, Object value)
           
 VariableMap VariableMapImpl.putValueTyped(String name, TypedValue value)
           
 

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

Methods in org.camunda.bpm.engine.impl.el that return VariableMap
 VariableMap StartProcessVariableScope.getVariables()
           
 VariableMap StartProcessVariableScope.getVariablesLocal()
           
 VariableMap StartProcessVariableScope.getVariablesLocalTyped()
           
 VariableMap StartProcessVariableScope.getVariablesLocalTyped(boolean deserializeObjectValues)
           
 VariableMap StartProcessVariableScope.getVariablesTyped()
           
 VariableMap StartProcessVariableScope.getVariablesTyped(boolean deserializeObjectValues)
           
 

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

Methods in org.camunda.bpm.engine.impl.form with parameters of type VariableMap
static void FormPropertyHelper.initFormPropertiesOnScope(VariableMap variables, PvmExecutionImpl execution)
           
 

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

Fields in org.camunda.bpm.engine.impl.form.handler declared as VariableMap
protected  VariableMap SubmitFormVariablesInvocation.properties
           
protected  VariableMap DefaultFormFieldValidatorContext.submittedValues
           
 

Methods in org.camunda.bpm.engine.impl.form.handler with parameters of type VariableMap
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)
           
 ExecutionEntity DefaultStartFormHandler.submitStartFormData(ExecutionEntity processInstance, VariableMap properties)
           
 void FormFieldValidationConstraintHandler.validate(Object submittedValue, VariableMap submittedValues, FormFieldHandler formFieldHandler, VariableScope variableScope)
           
 

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

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

Methods in org.camunda.bpm.engine.impl.persistence.entity with parameters of type VariableMap
 void ExecutionEntity.startWithFormProperties(VariableMap properties)
           
 

Uses of VariableMap in org.camunda.bpm.engine.impl.persistence.entity.util
 

Fields in org.camunda.bpm.engine.impl.persistence.entity.util declared as VariableMap
protected  VariableMap FormPropertyStartContext.formProperties
           
 

Methods in org.camunda.bpm.engine.impl.persistence.entity.util with parameters of type VariableMap
 void FormPropertyStartContext.setFormProperties(VariableMap properties)
           
 

Uses of VariableMap in org.camunda.bpm.engine.variable
 

Methods in org.camunda.bpm.engine.variable that return VariableMap
static VariableMap Variables.createVariables()
           
static VariableMap Variables.fromMap(Map<String,Object> map)
           
 VariableMap VariableMap.putValue(String name, Object value)
           
 VariableMap VariableMap.putValueTyped(String name, TypedValue value)
           
 



Copyright © 2015 camunda services GmbH. All rights reserved.