Package org.activiti.engine.impl.cmd
Class RemoveExecutionVariablesCmd
- java.lang.Object
-
- org.activiti.engine.impl.cmd.NeedsActiveExecutionCmd<java.lang.Void>
-
- org.activiti.engine.impl.cmd.RemoveExecutionVariablesCmd
-
- All Implemented Interfaces:
java.io.Serializable,Command<java.lang.Void>
public class RemoveExecutionVariablesCmd extends NeedsActiveExecutionCmd<java.lang.Void>
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.activiti.engine.impl.cmd.NeedsActiveExecutionCmd
executionId
-
-
Constructor Summary
Constructors Constructor Description RemoveExecutionVariablesCmd(java.lang.String executionId, java.util.Collection<java.lang.String> variableNames, boolean isLocal)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.lang.Voidexecute(CommandContext commandContext, ExecutionEntity execution)Subclasses should implement this method.protected java.lang.StringgetSuspendedExceptionMessage()Subclasses can override this to provide a more detailed exception message that will be thrown when the execution is suspended.-
Methods inherited from class org.activiti.engine.impl.cmd.NeedsActiveExecutionCmd
execute
-
-
-
-
Method Detail
-
execute
protected java.lang.Void execute(CommandContext commandContext, ExecutionEntity execution)
Description copied from class:NeedsActiveExecutionCmdSubclasses should implement this method. The providedExecutionEntityis guaranteed to be active (ie. not suspended).- Specified by:
executein classNeedsActiveExecutionCmd<java.lang.Void>
-
getSuspendedExceptionMessage
protected java.lang.String getSuspendedExceptionMessage()
Description copied from class:NeedsActiveExecutionCmdSubclasses can override this to provide a more detailed exception message that will be thrown when the execution is suspended.- Overrides:
getSuspendedExceptionMessagein classNeedsActiveExecutionCmd<java.lang.Void>
-
-