Package org.camunda.bpm.engine.impl.cmd
Class PatchTaskVariablesCmd
- java.lang.Object
-
- org.camunda.bpm.engine.impl.cmd.AbstractPatchVariablesCmd
-
- org.camunda.bpm.engine.impl.cmd.PatchTaskVariablesCmd
-
- All Implemented Interfaces:
Serializable
,Command<Void>
public class PatchTaskVariablesCmd extends AbstractPatchVariablesCmd
Patches task variables: First, applies modifications to existing variables and then deletes specified variables.- Author:
- kristin.polenz@camunda.com
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.camunda.bpm.engine.impl.cmd.AbstractPatchVariablesCmd
deletions, entityId, isLocal, variables
-
-
Constructor Summary
Constructors Constructor Description PatchTaskVariablesCmd(String taskId, Map<String,? extends Object> modifications, Collection<String> deletions, boolean isLocal)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected AbstractRemoveVariableCmd
getRemoveVariableCmd()
protected AbstractSetVariableCmd
getSetVariableCmd()
void
logVariableOperation(CommandContext commandContext)
-
Methods inherited from class org.camunda.bpm.engine.impl.cmd.AbstractPatchVariablesCmd
execute, getLogEntryOperation
-
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
-
-
-
-
Method Detail
-
getSetVariableCmd
protected AbstractSetVariableCmd getSetVariableCmd()
- Specified by:
getSetVariableCmd
in classAbstractPatchVariablesCmd
-
getRemoveVariableCmd
protected AbstractRemoveVariableCmd getRemoveVariableCmd()
- Specified by:
getRemoveVariableCmd
in classAbstractPatchVariablesCmd
-
logVariableOperation
public void logVariableOperation(CommandContext commandContext)
- Specified by:
logVariableOperation
in classAbstractPatchVariablesCmd
-
-