Package org.camunda.bpm.engine.impl.cmd
Class SetTaskPriorityCmd
- java.lang.Object
-
- org.camunda.bpm.engine.impl.cmd.AbstractSetTaskPropertyCmd<Integer>
-
- org.camunda.bpm.engine.impl.cmd.SetTaskPriorityCmd
-
- All Implemented Interfaces:
Serializable,Command<Void>
public class SetTaskPriorityCmd extends AbstractSetTaskPropertyCmd<Integer>
Command to change task priority to a new value.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.camunda.bpm.engine.impl.cmd.AbstractSetTaskPropertyCmd
taskId, value
-
-
Constructor Summary
Constructors Constructor Description SetTaskPriorityCmd(String taskId, Integer priority)Public constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidexecuteSetOperation(TaskEntity task, Integer priority)Executes the set operation of the concrete command.protected StringgetUserOperationLogName()Returns the User Operation Log name that corresponds to this command.-
Methods inherited from class org.camunda.bpm.engine.impl.cmd.AbstractSetTaskPropertyCmd
checkTaskAgainstContext, ensureNotNullAndGet, execute, logOperation, validateAndGet
-
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
-
getUserOperationLogName
protected String getUserOperationLogName()
Description copied from class:AbstractSetTaskPropertyCmdReturns the User Operation Log name that corresponds to this command. Meant to be implemented by concretions.- Specified by:
getUserOperationLogNamein classAbstractSetTaskPropertyCmd<Integer>- Returns:
- the user operation log name
-
executeSetOperation
protected void executeSetOperation(TaskEntity task, Integer priority)
Description copied from class:AbstractSetTaskPropertyCmdExecutes the set operation of the concrete command.- Specified by:
executeSetOperationin classAbstractSetTaskPropertyCmd<Integer>- Parameters:
task- the task entity on which to set a propertypriority- the value to se
-
-