Uses of Interface
org.camunda.bpm.engine.variable.VariableMap
Packages that use 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
Methods in org.camunda.bpm.client.task that return VariableMapModifier 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
Methods in org.camunda.bpm.client.task.impl that return VariableMapModifier and TypeMethodDescriptionExternalTaskImpl.getAllVariablesTyped()
ExternalTaskImpl.getAllVariablesTyped
(boolean deserializeObjectValues) -
Uses of VariableMap in org.camunda.bpm.dmn.engine.impl
Methods in org.camunda.bpm.dmn.engine.impl that return VariableMapModifier and TypeMethodDescriptionprotected VariableMap
DefaultDmnDecisionContext.buildVariableMapFromVariableContext
(VariableContext variableContext) Methods in org.camunda.bpm.dmn.engine.impl with parameters of type VariableMapModifier and TypeMethodDescriptionprotected void
DefaultDmnDecisionContext.addResultToVariableContext
(DmnDecisionResult evaluatedResult, VariableMap variableMap, DmnDecision evaluatedDecision) -
Uses of VariableMap in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return VariableMapModifier 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
Methods in org.camunda.bpm.engine.cdi that return VariableMapModifier 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
Classes in org.camunda.bpm.engine.cdi.impl that implement VariableMapModifier 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
Fields in org.camunda.bpm.engine.cdi.impl.context declared as VariableMapModifier and TypeFieldDescriptionprotected VariableMap
ScopedAssociation.cachedVariables
protected VariableMap
ScopedAssociation.cachedVariablesLocal
Methods in org.camunda.bpm.engine.cdi.impl.context that return VariableMapModifier and TypeMethodDescriptionContextAssociationManager.getCachedLocalVariables()
DefaultContextAssociationManager.getCachedLocalVariables()
ContextAssociationManager.getCachedVariables()
DefaultContextAssociationManager.getCachedVariables()
ScopedAssociation.getCachedVariables()
ScopedAssociation.getCachedVariablesLocal()
-
Uses of VariableMap in org.camunda.bpm.engine.delegate
Methods in org.camunda.bpm.engine.delegate that return VariableMapModifier and TypeMethodDescriptionVariableScope.getVariablesLocalTyped()
VariableScope.getVariablesLocalTyped
(boolean deserializeValues) VariableScope.getVariablesTyped()
VariableScope.getVariablesTyped
(boolean deserializeValues) Methods in org.camunda.bpm.engine.delegate with parameters of type VariableMapModifier 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
Methods in org.camunda.bpm.engine.externaltask that return VariableMap -
Uses of VariableMap in org.camunda.bpm.engine.impl
Fields in org.camunda.bpm.engine.impl declared as VariableMapModifier 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
Methods in org.camunda.bpm.engine.impl that return VariableMapModifier 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
Methods in org.camunda.bpm.engine.impl.bpmn.behavior that return VariableMapModifier 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) Methods in org.camunda.bpm.engine.impl.bpmn.behavior with parameters of type VariableMapModifier 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
Fields in org.camunda.bpm.engine.impl.cfg.multitenancy declared as VariableMapModifier and TypeFieldDescriptionprotected VariableMap
TenantIdProviderCaseInstanceContext.variables
protected VariableMap
TenantIdProviderProcessInstanceContext.variables
Methods in org.camunda.bpm.engine.impl.cfg.multitenancy that return VariableMapModifier and TypeMethodDescriptionTenantIdProviderCaseInstanceContext.getVariables()
TenantIdProviderProcessInstanceContext.getVariables()
Constructors in org.camunda.bpm.engine.impl.cfg.multitenancy with parameters of type VariableMapModifierConstructorDescriptionTenantIdProviderCaseInstanceContext
(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
Fields in org.camunda.bpm.engine.impl.cmd declared as VariableMapModifier and TypeFieldDescriptionprotected VariableMap
SubmitTaskFormCmd.properties
protected VariableMap
AbstractInstantiationCmd.variables
protected VariableMap
SubmitStartFormCmd.variables
protected VariableMap
AbstractInstantiationCmd.variablesLocal
Methods in org.camunda.bpm.engine.impl.cmd that return VariableMapModifier 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()
Methods in org.camunda.bpm.engine.impl.cmd with parameters of type VariableMapModifier and TypeMethodDescriptionprotected void
CreateMigrationPlanCmd.validateVariables
(VariableMap variables, MigrationPlanValidationReportImpl planReport) -
Uses of VariableMap in org.camunda.bpm.engine.impl.cmmn
Fields in org.camunda.bpm.engine.impl.cmmn declared as VariableMapMethods in org.camunda.bpm.engine.impl.cmmn that return VariableMapModifier 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
Methods in org.camunda.bpm.engine.impl.cmmn.behavior that return VariableMapModifier and TypeMethodDescriptionprotected 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 VariableMapModifier and TypeMethodDescriptionGetCaseExecutionVariablesCmd.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 VariableMapModifier and TypeMethodDescriptionCallableElement.getInputVariables
(VariableScope variableScope) CallableElement.getOutputVariables
(VariableScope calledElementScope) CallableElement.getOutputVariablesLocal
(VariableScope calledElementScope) protected VariableMap
CallableElement.getVariables
(List<CallableElementParameter> params, VariableScope variableScope) Methods in org.camunda.bpm.engine.impl.core.model with parameters of type VariableMapModifier and TypeMethodDescriptionvoid
CallableElementParameter.applyTo
(VariableScope variableScope, VariableMap variables) -
Uses of VariableMap in org.camunda.bpm.engine.impl.core.variable.scope
Methods in org.camunda.bpm.engine.impl.core.variable.scope that return VariableMapModifier and TypeMethodDescriptionVariableScopeLocalAdapter.getVariablesLocalTyped()
VariableScopeLocalAdapter.getVariablesLocalTyped
(boolean deserializeValues) VariableScopeLocalAdapter.getVariablesTyped()
VariableScopeLocalAdapter.getVariablesTyped
(boolean deserializeValues) -
Uses of VariableMap in org.camunda.bpm.engine.impl.dmn.cmd
Fields in org.camunda.bpm.engine.impl.dmn.cmd declared as VariableMapModifier and TypeFieldDescriptionprotected VariableMap
EvaluateDecisionCmd.variables
protected VariableMap
EvaluateDecisionTableCmd.variables
Methods in org.camunda.bpm.engine.impl.dmn.cmd with parameters of type VariableMapModifier 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
Methods in org.camunda.bpm.engine.impl.el that return VariableMapModifier 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
Methods in org.camunda.bpm.engine.impl.externaltask that return VariableMap -
Uses of VariableMap in org.camunda.bpm.engine.impl.form
Methods in org.camunda.bpm.engine.impl.form with parameters of type VariableMapModifier and TypeMethodDescriptionstatic 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 VariableMapModifier and TypeFieldDescriptionprotected VariableMap
SubmitFormVariablesInvocation.properties
protected VariableMap
DefaultFormFieldValidatorContext.submittedValues
Methods in org.camunda.bpm.engine.impl.form.handler with parameters of type VariableMapModifier 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) Constructors in org.camunda.bpm.engine.impl.form.handler with parameters of type VariableMapModifierConstructorDescriptionDefaultFormFieldValidatorContext
(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
Fields in org.camunda.bpm.engine.impl.migration declared as VariableMapModifier and TypeFieldDescriptionprotected VariableMap
MigrationPlanBuilderImpl.variables
protected VariableMap
MigrationPlanImpl.variables
Methods in org.camunda.bpm.engine.impl.migration that return VariableMapModifier and TypeMethodDescriptionMigrationPlanBuilderImpl.getVariables()
MigrationPlanImpl.getVariables()
Methods in org.camunda.bpm.engine.impl.migration with parameters of type VariableMap -
Uses of VariableMap in org.camunda.bpm.engine.impl.persistence.entity
Fields in org.camunda.bpm.engine.impl.persistence.entity declared as VariableMapModifier and TypeFieldDescriptionprotected final VariableMap
ProcessInstanceWithVariablesImpl.variables
protected VariableMap
ExecutionVariableSnapshotObserver.variableSnapshot
The variables which are observed during the execution.Methods in org.camunda.bpm.engine.impl.persistence.entity that return VariableMapModifier and TypeMethodDescriptionExecutionVariableSnapshotObserver.getVariables()
ProcessInstanceWithVariablesImpl.getVariables()
Methods in org.camunda.bpm.engine.impl.persistence.entity with parameters of type VariableMapModifier and TypeMethodDescriptionprotected void
ExecutionEntity.provideTenantId
(Map<String, Object> variables, VariableMap properties) void
ExecutionEntity.start
(Map<String, Object> variables, VariableMap formProperties) Constructors in org.camunda.bpm.engine.impl.persistence.entity with parameters of type VariableMapModifierConstructorDescriptionProcessInstanceWithVariablesImpl
(ExecutionEntity executionEntity, VariableMap variables) -
Uses of VariableMap in org.camunda.bpm.engine.impl.pvm.runtime
Methods in org.camunda.bpm.engine.impl.pvm.runtime with parameters of type VariableMapModifier 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
Fields in org.camunda.bpm.engine.impl.runtime declared as VariableMapModifier and TypeFieldDescriptionprotected final VariableMap
ConditionSet.variables
protected VariableMap
MessageCorrelationResultImpl.variables
Methods in org.camunda.bpm.engine.impl.runtime that return VariableMapModifier and TypeMethodDescriptionConditionSet.getVariables()
MessageCorrelationResultImpl.getVariables()
Methods in org.camunda.bpm.engine.impl.runtime with parameters of type VariableMapModifier and TypeMethodDescriptionvoid
MessageCorrelationResultImpl.setVariables
(VariableMap variables) -
Uses of VariableMap in org.camunda.bpm.engine.impl.util
Methods in org.camunda.bpm.engine.impl.util with parameters of type VariableMapModifier 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
Methods in org.camunda.bpm.engine.migration that return VariableMap -
Uses of VariableMap in org.camunda.bpm.engine.rest.dto
Methods in org.camunda.bpm.engine.rest.dto that return VariableMapModifier and TypeMethodDescriptionstatic VariableMap
VariableValueDto.toMap
(Map<String, VariableValueDto> variables, ProcessEngine processEngine, com.fasterxml.jackson.databind.ObjectMapper objectMapper) Methods in org.camunda.bpm.engine.rest.dto with parameters of type VariableMapModifier 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
Methods in org.camunda.bpm.engine.rest.sub.impl that return VariableMapModifier and TypeMethodDescriptionprotected abstract VariableMap
AbstractVariablesResource.getVariableEntities
(boolean deserializeValues) Methods in org.camunda.bpm.engine.rest.sub.impl with parameters of type VariableMapModifier and TypeMethodDescriptionprotected abstract void
AbstractVariablesResource.updateVariableEntities
(VariableMap variables, List<String> deletions) -
Uses of VariableMap in org.camunda.bpm.engine.rest.sub.runtime.impl
Methods in org.camunda.bpm.engine.rest.sub.runtime.impl that return VariableMapModifier 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) Methods in org.camunda.bpm.engine.rest.sub.runtime.impl with parameters of type VariableMapModifier 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
Methods in org.camunda.bpm.engine.rest.sub.task.impl that return VariableMapModifier and TypeMethodDescriptionprotected VariableMap
LocalTaskVariablesResource.getVariableEntities
(boolean deserializeValues) protected VariableMap
TaskVariablesResource.getVariableEntities
(boolean deserializeValues) Methods in org.camunda.bpm.engine.rest.sub.task.impl with parameters of type VariableMapModifier 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
Methods in org.camunda.bpm.engine.runtime that return VariableMapModifier 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
Methods in org.camunda.bpm.engine.variable that return VariableMapModifier 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
Classes in org.camunda.bpm.engine.variable.impl that implement VariableMapMethods in org.camunda.bpm.engine.variable.impl that return VariableMap