Class CaseExecutionVariableCmd
- java.lang.Object
-
- org.camunda.bpm.engine.impl.cmmn.cmd.CaseExecutionVariableCmd
-
- All Implemented Interfaces:
Serializable
,Command<Void>
- Direct Known Subclasses:
StateTransitionCaseExecutionCmd
public class CaseExecutionVariableCmd extends Object implements Command<Void>, Serializable
- Author:
- Roman Smirnov
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected CaseExecutionEntity
caseExecution
protected String
caseExecutionId
protected Map<String,Object>
variables
protected Collection<String>
variablesDeletions
protected Map<String,Object>
variablesLocal
protected Collection<String>
variablesLocalDeletions
-
Constructor Summary
Constructors Constructor Description CaseExecutionVariableCmd(String caseExecutionId, Map<String,Object> variables, Map<String,Object> variablesLocal, Collection<String> variablesDeletions, Collection<String> variablesLocalDeletions)
CaseExecutionVariableCmd(CaseExecutionCommandBuilderImpl builder)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Void
execute(CommandContext commandContext)
CaseExecutionEntity
getCaseExecution()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.camunda.bpm.engine.impl.interceptor.Command
isRetryable
-
-
-
-
Field Detail
-
caseExecutionId
protected String caseExecutionId
-
variablesDeletions
protected Collection<String> variablesDeletions
-
variablesLocalDeletions
protected Collection<String> variablesLocalDeletions
-
caseExecution
protected CaseExecutionEntity caseExecution
-
-
Constructor Detail
-
CaseExecutionVariableCmd
public CaseExecutionVariableCmd(String caseExecutionId, Map<String,Object> variables, Map<String,Object> variablesLocal, Collection<String> variablesDeletions, Collection<String> variablesLocalDeletions)
-
CaseExecutionVariableCmd
public CaseExecutionVariableCmd(CaseExecutionCommandBuilderImpl builder)
-
-
Method Detail
-
execute
public Void execute(CommandContext commandContext)
-
getCaseExecution
public CaseExecutionEntity getCaseExecution()
-
-