Package org.camunda.bpm.engine.impl.cmd
Class CompleteExternalTaskCmd
- java.lang.Object
-
- org.camunda.bpm.engine.impl.cmd.ExternalTaskCmd
-
- org.camunda.bpm.engine.impl.cmd.HandleExternalTaskCmd
-
- org.camunda.bpm.engine.impl.cmd.CompleteExternalTaskCmd
-
- All Implemented Interfaces:
Command<java.lang.Void>
public class CompleteExternalTaskCmd extends HandleExternalTaskCmd
- Author:
- Thorben Lindhauer, Christopher Zell
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.Map<java.lang.String,java.lang.Object>
localVariables
protected java.util.Map<java.lang.String,java.lang.Object>
variables
-
Fields inherited from class org.camunda.bpm.engine.impl.cmd.HandleExternalTaskCmd
workerId
-
Fields inherited from class org.camunda.bpm.engine.impl.cmd.ExternalTaskCmd
externalTaskId
-
-
Constructor Summary
Constructors Constructor Description CompleteExternalTaskCmd(java.lang.String externalTaskId, java.lang.String workerId, java.util.Map<java.lang.String,java.lang.Object> variables, java.util.Map<java.lang.String,java.lang.Object> localVariables)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
execute(ExternalTaskEntity externalTask)
Executes the specific external task commands, which belongs to the current sub class.java.lang.String
getErrorMessageOnWrongWorkerAccess()
Returns the error message.-
Methods inherited from class org.camunda.bpm.engine.impl.cmd.HandleExternalTaskCmd
execute, validateInput, validateWorkerViolation
-
Methods inherited from class org.camunda.bpm.engine.impl.cmd.ExternalTaskCmd
getUserOperationLogOperationType, getUserOperationLogPropertyChanges, writeUserOperationLog
-
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
-
getErrorMessageOnWrongWorkerAccess
public java.lang.String getErrorMessageOnWrongWorkerAccess()
Description copied from class:HandleExternalTaskCmd
Returns the error message. Which is used to create an specific message for the BadUserRequestException if an worker has no rights to execute commands of the external task.- Specified by:
getErrorMessageOnWrongWorkerAccess
in classHandleExternalTaskCmd
- Returns:
- the specific error message
-
execute
public void execute(ExternalTaskEntity externalTask)
Description copied from class:ExternalTaskCmd
Executes the specific external task commands, which belongs to the current sub class.- Specified by:
execute
in classExternalTaskCmd
- Parameters:
externalTask
- the external task which is used for the command execution
-
-