Uses of Interface
org.camunda.bpm.engine.variable.VariableMap
Package
Description
Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of a
Through the services obtained from such a
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 Deployment
sRuntimeService
:
For starting and searching ProcessInstance
sTaskService
:
Exposes operations to manage human (standalone) Task
s,
such as claiming, completing and assigning tasksIdentityService
:
Used for managing User
s,
Group
s and the relations between themManagementService
:
Exposes engine admin and maintenance operations,
which have no relation to the runtime execution of business processesHistoryService
:
Exposes information about ongoing and past process instances.FormService
:
Access to form data and rendered forms for starting new process instances and completing tasks.Interfaces used to include Java code in a process as the behavior of an activity
or as a listener to process events with
JavaDelegate
s.API implementation classes, which shouldn't directly be used by end-users.
Classes related to the
RuntimeService
.-
Uses of VariableMap in org.camunda.bpm.client.task
Modifier and TypeMethodDescriptionExternalTask.getAllVariablesTyped()
Returns typed variables that exist in the task's ancestor execution hierarchyExternalTask.getAllVariablesTyped
(boolean deserializeObjectValues) Returns typed variables that exist in the task's ancestor execution hierarchy -
Uses of VariableMap in org.camunda.bpm.client.task.impl
Modifier and TypeMethodDescriptionExternalTaskImpl.getAllVariablesTyped()
ExternalTaskImpl.getAllVariablesTyped
(boolean deserializeObjectValues) -
Uses of VariableMap in org.camunda.bpm.dmn.engine.impl
Modifier and TypeMethodDescriptionprotected VariableMap
DefaultDmnDecisionContext.buildVariableMapFromVariableContext
(VariableContext variableContext) Modifier and TypeMethodDescriptionprotected void
DefaultDmnDecisionContext.addResultToVariableContext
(DmnDecisionResult evaluatedResult, VariableMap variableMap, DmnDecision evaluatedDecision) -
Uses of VariableMap in org.camunda.bpm.engine
Modifier and TypeMethodDescriptionTaskService.completeWithVariablesInReturn
(String taskId, Map<String, Object> variables, boolean deserializeValues) Marks a task as done and continues process execution.FormService.getStartFormVariables
(String processDefinitionId) Retrieves a list of all variables for rendering a start from.FormService.getStartFormVariables
(String processDefinitionId, Collection<String> formVariables, boolean deserializeObjectValues) Retrieves a list of requested variables for rendering a start from.FormService.getTaskFormVariables
(String taskId) Retrieves a list of all variables for rendering a task form.FormService.getTaskFormVariables
(String taskId, Collection<String> formVariables, boolean deserializeObjectValues) Retrieves a list of requested variables for rendering a task form.CaseService.getVariablesLocalTyped
(String caseExecutionId) All variable values that are defined in the case execution scope, without taking outer scopes into account.CaseService.getVariablesLocalTyped
(String caseExecutionId, boolean deserializeValues) All variable values that are defined in the case execution scope, without taking outer scopes into account.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.RuntimeService.getVariablesLocalTyped
(String executionId) All variable values that are defined in the execution scope, without taking outer scopes into account.RuntimeService.getVariablesLocalTyped
(String executionId, boolean deserializeValues) All variable values that are defined in the execution scope, without taking outer scopes into account.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.TaskService.getVariablesLocalTyped
(String taskId) Get all variables and search only in the task scope.TaskService.getVariablesLocalTyped
(String taskId, boolean deserializeValues) Get all variables and search only in the task scope.TaskService.getVariablesLocalTyped
(String taskId, Collection<String> variableNames, boolean deserializeValues) Get values for all given variableName.CaseService.getVariablesTyped
(String caseExecutionId) All variables visible from the given execution scope (including parent scopes).CaseService.getVariablesTyped
(String caseExecutionId, boolean deserializeValues) All variables visible from the given execution scope (including parent scopes).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).RuntimeService.getVariablesTyped
(String executionId) All variables visible from the given execution scope (including parent scopes).RuntimeService.getVariablesTyped
(String executionId, boolean deserializeValues) All variables visible from the given execution scope (including parent scopes).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).TaskService.getVariablesTyped
(String taskId) Get all variables and search in the task scope and if available also the execution scopes.TaskService.getVariablesTyped
(String taskId, boolean deserializeValues) Get all variables and search in the task scope and if available also the execution scopes.TaskService.getVariablesTyped
(String taskId, Collection<String> variableNames, boolean deserializeValues) Get values for all given variableNameFormService.submitTaskFormWithVariablesInReturn
(String taskId, Map<String, Object> properties, boolean deserializeValues) Completes a task with the user data that was entered as properties in a task form. -
Uses of VariableMap in org.camunda.bpm.engine.cdi
Modifier and TypeMethodDescriptionBusinessProcess.getAndClearCachedLocalVariableMap()
Get theVariableMap
of local cached variables and clear the internal variable cache.BusinessProcess.getAndClearCachedVariableMap()
Get theVariableMap
of cached variables and clear the internal variable cache.BusinessProcess.getCachedLocalVariableMap()
Get a copy of theVariableMap
of local cached variables.BusinessProcess.getCachedVariableMap()
Get a copy of theVariableMap
of cached variables.protected VariableMap
ProcessVariables.processVariableMap()
protected VariableMap
ProcessVariables.processVariableMapLocal()
-
Uses of VariableMap in org.camunda.bpm.engine.cdi.impl
Modifier and TypeClassDescriptionclass
Allows to expose the local process variables of the current business process as a java.util.Map<String,Object>class
Allows to expose the process variables of the current business process as a java.util.Map<String,Object> -
Uses of VariableMap in org.camunda.bpm.engine.cdi.impl.context
Modifier and TypeFieldDescriptionprotected VariableMap
ScopedAssociation.cachedVariables
protected VariableMap
ScopedAssociation.cachedVariablesLocal
Modifier and TypeMethodDescriptionContextAssociationManager.getCachedLocalVariables()
DefaultContextAssociationManager.getCachedLocalVariables()
ContextAssociationManager.getCachedVariables()
DefaultContextAssociationManager.getCachedVariables()
ScopedAssociation.getCachedVariables()
ScopedAssociation.getCachedVariablesLocal()
-
Uses of VariableMap in org.camunda.bpm.engine.delegate
Modifier and TypeMethodDescriptionVariableScope.getVariablesLocalTyped()
VariableScope.getVariablesLocalTyped
(boolean deserializeValues) VariableScope.getVariablesTyped()
VariableScope.getVariablesTyped
(boolean deserializeValues) Modifier and TypeMethodDescriptionvoid
DelegateVariableMapping.mapInputVariables
(DelegateExecution superExecution, VariableMap subVariables) Maps the input variables into the given variables map. -
Uses of VariableMap in org.camunda.bpm.engine.externaltask
-
Uses of VariableMap in org.camunda.bpm.engine.impl
Modifier and TypeFieldDescriptionprotected VariableMap
MessageCorrelationBuilderImpl.correlationLocalVariables
protected VariableMap
MessageCorrelationBuilderImpl.correlationProcessInstanceVariables
protected VariableMap
MessageCorrelationBuilderImpl.payloadProcessInstanceVariables
protected VariableMap
MessageCorrelationBuilderImpl.payloadProcessInstanceVariablesLocal
protected VariableMap
MessageCorrelationBuilderImpl.payloadProcessInstanceVariablesToTriggeredScope
protected VariableMap
ProcessInstanceModificationBuilderImpl.processVariables
protected VariableMap
ConditionEvaluationBuilderImpl.variables
protected VariableMap
SignalEventReceivedBuilderImpl.variables
Modifier and TypeMethodDescriptionTaskServiceImpl.completeWithVariablesInReturn
(String taskId, Map<String, Object> variables, boolean deserializeValues) MessageCorrelationBuilderImpl.getPayloadProcessInstanceVariablesLocal()
MessageCorrelationBuilderImpl.getPayloadProcessInstanceVariablesToTriggeredScope()
ProcessInstanceModificationBuilderImpl.getProcessVariables()
FormServiceImpl.getStartFormVariables
(String processDefinitionId) FormServiceImpl.getStartFormVariables
(String processDefinitionId, Collection<String> formVariables, boolean deserializeObjectValues) FormServiceImpl.getTaskFormVariables
(String taskId) FormServiceImpl.getTaskFormVariables
(String taskId, Collection<String> formVariables, boolean deserializeObjectValues) ConditionEvaluationBuilderImpl.getVariables()
RuntimeServiceImpl.getVariables
(String executionId) RuntimeServiceImpl.getVariables
(String executionId, Collection<String> variableNames) SignalEventReceivedBuilderImpl.getVariables()
TaskServiceImpl.getVariables
(String taskId) TaskServiceImpl.getVariables
(String taskId, Collection<String> variableNames) RuntimeServiceImpl.getVariablesLocal
(String executionId) RuntimeServiceImpl.getVariablesLocal
(String executionId, Collection<String> variableNames) TaskServiceImpl.getVariablesLocal
(String taskId) TaskServiceImpl.getVariablesLocal
(String taskId, Collection<String> variableNames) RuntimeServiceImpl.getVariablesLocalTyped
(String executionId) RuntimeServiceImpl.getVariablesLocalTyped
(String executionId, boolean deserializeObjectValues) RuntimeServiceImpl.getVariablesLocalTyped
(String executionId, Collection<String> variableNames, boolean deserializeObjectValues) TaskServiceImpl.getVariablesLocalTyped
(String taskId) TaskServiceImpl.getVariablesLocalTyped
(String taskId, boolean deserializeValues) TaskServiceImpl.getVariablesLocalTyped
(String taskId, Collection<String> variableNames, boolean deserializeValues) RuntimeServiceImpl.getVariablesTyped
(String executionId) RuntimeServiceImpl.getVariablesTyped
(String executionId, boolean deserializeObjectValues) RuntimeServiceImpl.getVariablesTyped
(String executionId, Collection<String> variableNames, boolean deserializeObjectValues) TaskServiceImpl.getVariablesTyped
(String taskId) TaskServiceImpl.getVariablesTyped
(String taskId, boolean deserializeValues) TaskServiceImpl.getVariablesTyped
(String taskId, Collection<String> variableNames, boolean deserializeValues) FormServiceImpl.submitTaskFormWithVariablesInReturn
(String taskId, Map<String, Object> properties, boolean deserializeValues) -
Uses of VariableMap in org.camunda.bpm.engine.impl.bpmn.behavior
Modifier and TypeMethodDescriptionprotected VariableMap
CallableElementActivityBehavior.filterVariables
(VariableMap variables) protected VariableMap
CallableElementActivityBehavior.getInputVariables
(ActivityExecution callingExecution) protected VariableMap
CallableElementActivityBehavior.getOutputVariables
(VariableScope calledElementScope) protected VariableMap
CallableElementActivityBehavior.getOutputVariablesLocal
(VariableScope calledElementScope) Modifier and TypeMethodDescriptionprotected VariableMap
CallableElementActivityBehavior.filterVariables
(VariableMap variables) protected abstract void
CallableElementActivityBehavior.startInstance
(ActivityExecution execution, VariableMap variables, String businessKey) protected void
CallActivityBehavior.startInstance
(ActivityExecution execution, VariableMap variables, String businessKey) protected void
CaseCallActivityBehavior.startInstance
(ActivityExecution execution, VariableMap variables, String businessKey) -
Uses of VariableMap in org.camunda.bpm.engine.impl.cfg.multitenancy
Modifier and TypeFieldDescriptionprotected VariableMap
TenantIdProviderCaseInstanceContext.variables
protected VariableMap
TenantIdProviderProcessInstanceContext.variables
Modifier and TypeMethodDescriptionTenantIdProviderCaseInstanceContext.getVariables()
TenantIdProviderProcessInstanceContext.getVariables()
ModifierConstructorDescriptionTenantIdProviderCaseInstanceContext
(CaseDefinition caseDefinition, VariableMap variables) TenantIdProviderCaseInstanceContext
(CaseDefinition caseDefinition, VariableMap variables, DelegateCaseExecution superCaseExecution) TenantIdProviderCaseInstanceContext
(CaseDefinition caseDefinition, VariableMap variables, DelegateExecution superExecution) TenantIdProviderProcessInstanceContext
(ProcessDefinition processDefinition, VariableMap variables) TenantIdProviderProcessInstanceContext
(ProcessDefinition processDefinition, VariableMap variables, DelegateCaseExecution superCaseExecution) TenantIdProviderProcessInstanceContext
(ProcessDefinition processDefinition, VariableMap variables, DelegateExecution superExecution) -
Uses of VariableMap in org.camunda.bpm.engine.impl.cmd
Modifier and TypeFieldDescriptionprotected VariableMap
SubmitTaskFormCmd.properties
protected VariableMap
AbstractInstantiationCmd.variables
protected VariableMap
SubmitStartFormCmd.variables
protected VariableMap
AbstractInstantiationCmd.variablesLocal
Modifier and TypeMethodDescriptionprotected VariableMap
RestartProcessInstancesCmd.collectInitialVariables
(CommandContext commandContext, HistoricProcessInstance processInstance) protected VariableMap
RestartProcessInstancesCmd.collectLastVariables
(CommandContext commandContext, HistoricProcessInstance processInstance) protected VariableMap
RestartProcessInstancesCmd.collectVariables
(CommandContext commandContext, HistoricProcessInstance processInstance) CompleteTaskCmd.execute
(CommandContext commandContext) GetExecutionVariablesCmd.execute
(CommandContext commandContext) GetStartFormVariablesCmd.execute
(CommandContext commandContext) GetTaskFormVariablesCmd.execute
(CommandContext commandContext) GetTaskVariablesCmd.execute
(CommandContext commandContext) SubmitTaskFormCmd.execute
(CommandContext commandContext) AbstractInstantiationCmd.getVariables()
AbstractInstantiationCmd.getVariablesLocal()
protected VariableMap
AbstractCorrelateMessageCmd.resolveVariables()
Modifier and TypeMethodDescriptionprotected void
CreateMigrationPlanCmd.validateVariables
(VariableMap variables, MigrationPlanValidationReportImpl planReport) -
Uses of VariableMap in org.camunda.bpm.engine.impl.cmmn
Modifier and TypeMethodDescriptionprotected VariableMap
CaseServiceImpl.getCaseExecutionVariables
(String caseExecutionId, Collection<String> variableNames, boolean isLocal, boolean deserializeValues) CaseExecutionCommandBuilderImpl.getVariables()
CaseInstanceBuilderImpl.getVariables()
CaseServiceImpl.getVariables
(String caseExecutionId) CaseServiceImpl.getVariables
(String caseExecutionId, Collection<String> variableNames) CaseExecutionCommandBuilderImpl.getVariablesLocal()
CaseServiceImpl.getVariablesLocal
(String caseExecutionId) CaseServiceImpl.getVariablesLocal
(String caseExecutionId, Collection<String> variableNames) CaseServiceImpl.getVariablesLocalTyped
(String caseExecutionId) CaseServiceImpl.getVariablesLocalTyped
(String caseExecutionId, boolean deserializeValues) CaseServiceImpl.getVariablesLocalTyped
(String caseExecutionId, Collection<String> variableNames, boolean deserializeValues) CaseServiceImpl.getVariablesTyped
(String caseExecutionId) CaseServiceImpl.getVariablesTyped
(String caseExecutionId, boolean deserializeValues) CaseServiceImpl.getVariablesTyped
(String caseExecutionId, Collection<String> variableNames, boolean deserializeValues) -
Uses of VariableMap in org.camunda.bpm.engine.impl.cmmn.behavior
Modifier and TypeMethodDescriptionprotected VariableMap
ProcessOrCaseTaskActivityBehavior.getInputVariables
(CmmnActivityExecution execution) protected VariableMap
ProcessOrCaseTaskActivityBehavior.getOutputVariables
(VariableScope variableScope) -
Uses of VariableMap in org.camunda.bpm.engine.impl.cmmn.cmd
Modifier and TypeMethodDescriptionGetCaseExecutionVariablesCmd.execute
(CommandContext commandContext) -
Uses of VariableMap in org.camunda.bpm.engine.impl.core.model
Modifier and TypeMethodDescriptionCallableElement.getInputVariables
(VariableScope variableScope) CallableElement.getOutputVariables
(VariableScope calledElementScope) CallableElement.getOutputVariablesLocal
(VariableScope calledElementScope) protected VariableMap
CallableElement.getVariables
(List<CallableElementParameter> params, VariableScope variableScope) Modifier and TypeMethodDescriptionvoid
CallableElementParameter.applyTo
(VariableScope variableScope, VariableMap variables) -
Uses of VariableMap in org.camunda.bpm.engine.impl.core.variable.scope
Modifier and TypeMethodDescriptionVariableScopeLocalAdapter.getVariablesLocalTyped()
VariableScopeLocalAdapter.getVariablesLocalTyped
(boolean deserializeValues) VariableScopeLocalAdapter.getVariablesTyped()
VariableScopeLocalAdapter.getVariablesTyped
(boolean deserializeValues) -
Uses of VariableMap in org.camunda.bpm.engine.impl.dmn.cmd
Modifier and TypeFieldDescriptionprotected VariableMap
EvaluateDecisionCmd.variables
protected VariableMap
EvaluateDecisionTableCmd.variables
Modifier and TypeMethodDescriptionprotected DmnDecisionResult
EvaluateDecisionCmd.doEvaluateDecision
(DecisionDefinition decisionDefinition, VariableMap variables) protected DmnDecisionTableResult
EvaluateDecisionTableCmd.doEvaluateDecision
(DecisionDefinition decisionDefinition, VariableMap variables) -
Uses of VariableMap in org.camunda.bpm.engine.impl.el
Modifier and TypeMethodDescriptionStartProcessVariableScope.getVariables()
StartProcessVariableScope.getVariablesLocal()
StartProcessVariableScope.getVariablesLocalTyped()
StartProcessVariableScope.getVariablesLocalTyped
(boolean deserializeObjectValues) StartProcessVariableScope.getVariablesTyped()
StartProcessVariableScope.getVariablesTyped
(boolean deserializeObjectValues) -
Uses of VariableMap in org.camunda.bpm.engine.impl.externaltask
-
Uses of VariableMap in org.camunda.bpm.engine.impl.form
Modifier and TypeMethodDescriptionstatic void
FormPropertyHelper.initFormPropertiesOnScope
(VariableMap variables, PvmExecutionImpl execution) -
Uses of VariableMap in org.camunda.bpm.engine.impl.form.handler
Modifier and TypeFieldDescriptionprotected VariableMap
SubmitFormVariablesInvocation.properties
protected VariableMap
DefaultFormFieldValidatorContext.submittedValues
Modifier and TypeMethodDescriptionprotected void
DefaultFormHandler.fireFormPropertyHistoryEvents
(VariableMap properties, VariableScope variableScope) void
FormFieldHandler.handleSubmit
(VariableScope variableScope, VariableMap values, VariableMap allValues) void
FormPropertyHandler.submitFormProperty
(VariableScope variableScope, VariableMap variables) void
DefaultFormHandler.submitFormVariables
(VariableMap properties, VariableScope variableScope) void
DelegateFormHandler.submitFormVariables
(VariableMap properties, VariableScope variableScope) void
FormHandler.submitFormVariables
(VariableMap properties, VariableScope variableScope) DefaultStartFormHandler.submitStartFormData
(ExecutionEntity processInstance, VariableMap properties) void
FormFieldValidationConstraintHandler.validate
(Object submittedValue, VariableMap submittedValues, FormFieldHandler formFieldHandler, VariableScope variableScope) ModifierConstructorDescriptionDefaultFormFieldValidatorContext
(VariableScope variableScope, String configuration, VariableMap submittedValues, FormFieldHandler formFieldHandler) SubmitFormVariablesInvocation
(FormHandler formHandler, VariableMap properties, VariableScope variableScope) -
Uses of VariableMap in org.camunda.bpm.engine.impl.migration
Modifier and TypeFieldDescriptionprotected VariableMap
MigrationPlanBuilderImpl.variables
protected VariableMap
MigrationPlanImpl.variables
Modifier and TypeMethodDescriptionMigrationPlanBuilderImpl.getVariables()
MigrationPlanImpl.getVariables()
-
Uses of VariableMap in org.camunda.bpm.engine.impl.persistence.entity
Modifier and TypeFieldDescriptionprotected final VariableMap
ProcessInstanceWithVariablesImpl.variables
protected VariableMap
ExecutionVariableSnapshotObserver.variableSnapshot
The variables which are observed during the execution.Modifier and TypeMethodDescriptionExecutionVariableSnapshotObserver.getVariables()
ProcessInstanceWithVariablesImpl.getVariables()
Modifier and TypeMethodDescriptionprotected void
ExecutionEntity.provideTenantId
(Map<String, Object> variables, VariableMap properties) void
ExecutionEntity.start
(Map<String, Object> variables, VariableMap formProperties) ModifierConstructorDescriptionProcessInstanceWithVariablesImpl
(ExecutionEntity executionEntity, VariableMap variables) -
Uses of VariableMap in org.camunda.bpm.engine.impl.pvm.runtime
Modifier and TypeMethodDescriptionprotected void
PvmExecutionImpl.start
(Map<String, Object> variables, VariableMap formProperties) void
PvmExecutionImpl.startWithFormProperties
(VariableMap formProperties) -
Uses of VariableMap in org.camunda.bpm.engine.impl.runtime
Modifier and TypeFieldDescriptionprotected final VariableMap
ConditionSet.variables
protected VariableMap
MessageCorrelationResultImpl.variables
Modifier and TypeMethodDescriptionConditionSet.getVariables()
MessageCorrelationResultImpl.getVariables()
Modifier and TypeMethodDescriptionvoid
MessageCorrelationResultImpl.setVariables
(VariableMap variables) -
Uses of VariableMap in org.camunda.bpm.engine.impl.util
Modifier and TypeMethodDescriptionprotected static DecisionInvocation
DecisionEvaluationUtil.createInvocation
(DecisionDefinition decisionDefinition, VariableMap variables) static DmnDecisionResult
DecisionEvaluationUtil.evaluateDecision
(DecisionDefinition decisionDefinition, VariableMap variables) static DmnDecisionTableResult
DecisionEvaluationUtil.evaluateDecisionTable
(DecisionDefinition decisionDefinition, VariableMap variables) -
Uses of VariableMap in org.camunda.bpm.engine.migration
-
Uses of VariableMap in org.camunda.bpm.engine.rest.dto
Modifier and TypeMethodDescriptionstatic VariableMap
VariableValueDto.toMap
(Map<String, VariableValueDto> variables, ProcessEngine processEngine, com.fasterxml.jackson.databind.ObjectMapper objectMapper) Modifier and TypeMethodDescriptionstatic Map<String,
VariableValueDto> VariableValueDto.fromMap
(VariableMap variables) static Map<String,
VariableValueDto> VariableValueDto.fromMap
(VariableMap variables, boolean preferSerializedValue) -
Uses of VariableMap in org.camunda.bpm.engine.rest.sub.impl
Modifier and TypeMethodDescriptionprotected abstract VariableMap
AbstractVariablesResource.getVariableEntities
(boolean deserializeValues) Modifier and TypeMethodDescriptionprotected abstract void
AbstractVariablesResource.updateVariableEntities
(VariableMap variables, List<String> deletions) -
Uses of VariableMap in org.camunda.bpm.engine.rest.sub.runtime.impl
Modifier and TypeMethodDescriptionprotected VariableMap
CaseExecutionVariablesResource.getVariableEntities
(boolean deserializeValues) protected VariableMap
ExecutionVariablesResource.getVariableEntities
(boolean deserializeValues) protected VariableMap
LocalCaseExecutionVariablesResource.getVariableEntities
(boolean deserializeValues) protected VariableMap
LocalExecutionVariablesResource.getVariableEntities
(boolean deserializeValues) Modifier and TypeMethodDescriptionprotected void
CaseExecutionVariablesResource.updateVariableEntities
(VariableMap variables, List<String> deletions) protected void
ExecutionVariablesResource.updateVariableEntities
(VariableMap modifications, List<String> deletions) protected void
LocalCaseExecutionVariablesResource.updateVariableEntities
(VariableMap variables, List<String> deletions) protected void
LocalExecutionVariablesResource.updateVariableEntities
(VariableMap modifications, List<String> deletions) -
Uses of VariableMap in org.camunda.bpm.engine.rest.sub.task.impl
Modifier and TypeMethodDescriptionprotected VariableMap
LocalTaskVariablesResource.getVariableEntities
(boolean deserializeValues) protected VariableMap
TaskVariablesResource.getVariableEntities
(boolean deserializeValues) Modifier and TypeMethodDescriptionprotected void
LocalTaskVariablesResource.updateVariableEntities
(VariableMap modifications, List<String> deletions) protected void
TaskVariablesResource.updateVariableEntities
(VariableMap modifications, List<String> deletions) -
Uses of VariableMap in org.camunda.bpm.engine.runtime
Modifier and TypeMethodDescriptionMessageCorrelationResultWithVariables.getVariables()
Returns the process variables of the process instance on which the message was correlated to.ProcessInstanceWithVariables.getVariables()
Returns the latest variables of the process instance. -
Uses of VariableMap in org.camunda.bpm.engine.variable
Modifier and TypeMethodDescriptionstatic VariableMap
Variables.createVariables()
Returns a newVariableMap
instance.static VariableMap
If the given map is not a variable map, adds all its entries as untyped values to a newVariableMap
.static VariableMap
Shortcut forVariables.createVariables().putValue(name, value)
VariableMap.putValueTyped
(String name, TypedValue value) static VariableMap
Variables.putValueTyped
(String name, TypedValue value) Shortcut forVariables.createVariables().putValueTyped(name, value)
-
Uses of VariableMap in org.camunda.bpm.engine.variable.impl