Package org.flowable.engine.impl.cmd
Class DeleteIdentityLinkCmd
java.lang.Object
org.flowable.engine.impl.cmd.NeedsActiveTaskCmd<Void>
org.flowable.engine.impl.cmd.DeleteIdentityLinkCmd
- All Implemented Interfaces:
Serializable
,Command<Void>
- Author:
- Tom Baeyens, Falko Menge, Joram Barrez
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected String
static final int
static final int
protected String
protected String
Fields inherited from class org.flowable.engine.impl.cmd.NeedsActiveTaskCmd
taskId
-
Constructor Summary
ConstructorsConstructorDescriptionDeleteIdentityLinkCmd
(String taskId, String userId, String groupId, String type) -
Method Summary
Modifier and TypeMethodDescriptionprotected Void
execute
(CommandContext commandContext, TaskEntity task) Subclasses must implement in this method their normal command logic.protected void
validateParams
(String userId, String groupId, String type, String taskId) Methods inherited from class org.flowable.engine.impl.cmd.NeedsActiveTaskCmd
execute, getSuspendedTaskExceptionPrefix
-
Field Details
-
IDENTITY_USER
public static final int IDENTITY_USER- See Also:
-
IDENTITY_GROUP
public static final int IDENTITY_GROUP- See Also:
-
userId
-
groupId
-
type
-
-
Constructor Details
-
DeleteIdentityLinkCmd
-
-
Method Details
-
validateParams
-
execute
Description copied from class:NeedsActiveTaskCmd
Subclasses must implement in this method their normal command logic. The provided task is ensured to be active.- Specified by:
execute
in classNeedsActiveTaskCmd<Void>
-