Uses of Interface
org.camunda.bpm.engine.runtime.CaseExecutionCommandBuilder
-
Packages that use CaseExecutionCommandBuilder Package Description org.camunda.bpm.engine Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration
(typically based on a configuration file), from which aProcessEngine
can be obtained.
Through the services obtained from such aProcessEngine
, BPM and workflow operation can be executed:
RepositoryService
: ManagesDeployment
s
RuntimeService
: For starting and searchingProcessInstance
s
TaskService
: Exposes operations to manage human (standalone)Task
s, such as claiming, completing and assigning tasks
IdentityService
: Used for managingUser
s,Group
s 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.impl.cmmn org.camunda.bpm.engine.rest.sub.runtime.impl org.camunda.bpm.engine.runtime Classes related to theRuntimeService
. -
-
Uses of CaseExecutionCommandBuilder in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return CaseExecutionCommandBuilder Modifier and Type Method Description CaseExecutionCommandBuilder
CaseService. withCaseExecution(String caseExecutionId)
Define a command to be executed for aCaseExecution
using a fluent builder. -
Uses of CaseExecutionCommandBuilder in org.camunda.bpm.engine.impl.cmmn
Classes in org.camunda.bpm.engine.impl.cmmn that implement CaseExecutionCommandBuilder Modifier and Type Class Description class
CaseExecutionCommandBuilderImpl
Methods in org.camunda.bpm.engine.impl.cmmn that return CaseExecutionCommandBuilder Modifier and Type Method Description CaseExecutionCommandBuilder
CaseExecutionCommandBuilderImpl. removeVariable(String variableName)
CaseExecutionCommandBuilder
CaseExecutionCommandBuilderImpl. removeVariableLocal(String variableName)
CaseExecutionCommandBuilder
CaseExecutionCommandBuilderImpl. removeVariables(Collection<String> variableNames)
CaseExecutionCommandBuilder
CaseExecutionCommandBuilderImpl. removeVariablesLocal(Collection<String> variableNames)
CaseExecutionCommandBuilder
CaseExecutionCommandBuilderImpl. setVariable(String variableName, Object variableValue)
CaseExecutionCommandBuilder
CaseExecutionCommandBuilderImpl. setVariableLocal(String localVariableName, Object localVariableValue)
CaseExecutionCommandBuilder
CaseExecutionCommandBuilderImpl. setVariables(Map<String,Object> variables)
CaseExecutionCommandBuilder
CaseExecutionCommandBuilderImpl. setVariablesLocal(Map<String,Object> variablesLocal)
CaseExecutionCommandBuilder
CaseServiceImpl. withCaseExecution(String caseExecutionId)
-
Uses of CaseExecutionCommandBuilder in org.camunda.bpm.engine.rest.sub.runtime.impl
Methods in org.camunda.bpm.engine.rest.sub.runtime.impl with parameters of type CaseExecutionCommandBuilder Modifier and Type Method Description protected void
CaseExecutionResourceImpl. initializeCommand(CaseExecutionCommandBuilder commandBuilder, CaseExecutionTriggerDto triggerDto, String transition)
protected void
CaseInstanceResourceImpl. initializeCommand(CaseExecutionCommandBuilder commandBuilder, CaseExecutionTriggerDto triggerDto, String transition)
protected void
CaseExecutionResourceImpl. initializeCommandWithDeletions(CaseExecutionCommandBuilder commandBuilder, List<VariableNameDto> deletions, String transition)
protected void
CaseInstanceResourceImpl. initializeCommandWithDeletions(CaseExecutionCommandBuilder commandBuilder, List<VariableNameDto> deletions, String transition)
protected void
CaseExecutionResourceImpl. initializeCommandWithVariables(CaseExecutionCommandBuilder commandBuilder, Map<String,TriggerVariableValueDto> variables, String transition)
protected void
CaseInstanceResourceImpl. initializeCommandWithVariables(CaseExecutionCommandBuilder commandBuilder, Map<String,TriggerVariableValueDto> variables, String transition)
-
Uses of CaseExecutionCommandBuilder in org.camunda.bpm.engine.runtime
Methods in org.camunda.bpm.engine.runtime that return CaseExecutionCommandBuilder Modifier and Type Method Description CaseExecutionCommandBuilder
CaseExecutionCommandBuilder. removeVariable(String variableName)
Pass a variable name of a variable to be removed for a case execution.CaseExecutionCommandBuilder
CaseExecutionCommandBuilder. removeVariableLocal(String variableName)
Pass a variable name of a local variable to be removed for a case execution (not considering parent scopes).CaseExecutionCommandBuilder
CaseExecutionCommandBuilder. removeVariables(Collection<String> variableNames)
Pass a collection of variable names of variables to be removed for a case execution.CaseExecutionCommandBuilder
CaseExecutionCommandBuilder. removeVariablesLocal(Collection<String> variableNames)
Pass a collection of variable names of local variables to be removed for a case execution (not considering parent scopes).CaseExecutionCommandBuilder
CaseExecutionCommandBuilder. setVariable(String variableName, Object variableValue)
Pass a variable to the case execution.CaseExecutionCommandBuilder
CaseExecutionCommandBuilder. setVariableLocal(String variableName, Object variableValue)
Pass a local variable to the case execution (not considering parent scopes).CaseExecutionCommandBuilder
CaseExecutionCommandBuilder. setVariables(Map<String,Object> variables)
Pass a map of variables to the case execution.CaseExecutionCommandBuilder
CaseExecutionCommandBuilder. setVariablesLocal(Map<String,Object> variables)
Pass a map of variables to the case execution (not considering parent scopes).
-