Package org.flowable.engine.impl.cmd
Class NeedsActiveProcessDefinitionCmd<T>
java.lang.Object
org.flowable.engine.impl.cmd.NeedsActiveProcessDefinitionCmd<T>
- All Implemented Interfaces:
Serializable
,Command<T>
- Direct Known Subclasses:
SubmitStartFormCmd
public abstract class NeedsActiveProcessDefinitionCmd<T>
extends Object
implements Command<T>, Serializable
- Author:
- Joram Barrez
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionexecute
(CommandContext commandContext) protected abstract T
execute
(CommandContext commandContext, ProcessDefinitionEntity processDefinition) Subclasses should implement this.
-
Field Details
-
processDefinitionId
-
-
Constructor Details
-
NeedsActiveProcessDefinitionCmd
-
-
Method Details
-
execute
-
execute
protected abstract T execute(CommandContext commandContext, ProcessDefinitionEntity processDefinition) Subclasses should implement this. The providedProcessDefinition
is guaranteed to be an active process definition (ie. not suspended).
-