Package com.flowable.app.engine.impl.cmd
Class DeleteIdentityLinkCmd
- java.lang.Object
-
- com.flowable.app.engine.impl.cmd.NeedsAppDefinitionCmd<Void>
-
- com.flowable.app.engine.impl.cmd.DeleteIdentityLinkCmd
-
- All Implemented Interfaces:
Serializable
,Command<Void>
public class DeleteIdentityLinkCmd extends NeedsAppDefinitionCmd<Void>
- Author:
- Tijs Rademakers
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected String
groupId
static int
IDENTITY_GROUP
static int
IDENTITY_USER
protected String
type
protected String
userId
-
Fields inherited from class com.flowable.app.engine.impl.cmd.NeedsAppDefinitionCmd
appDefinitionId
-
-
Constructor Summary
Constructors Constructor Description DeleteIdentityLinkCmd(String appDefinitionId, String userId, String groupId, String type)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Void
execute(CommandContext commandContext, AppDefinition appDefinition)
Subclasses must implement in this method their normal command logic.protected void
validateParams(String userId, String groupId, String type, String appDefinitionId)
-
Methods inherited from class com.flowable.app.engine.impl.cmd.NeedsAppDefinitionCmd
execute
-
-
-
-
Field Detail
-
IDENTITY_USER
public static final int IDENTITY_USER
- See Also:
- Constant Field Values
-
IDENTITY_GROUP
public static final int IDENTITY_GROUP
- See Also:
- Constant Field Values
-
userId
protected String userId
-
groupId
protected String groupId
-
type
protected String type
-
-
Method Detail
-
validateParams
protected void validateParams(String userId, String groupId, String type, String appDefinitionId)
-
execute
protected Void execute(CommandContext commandContext, AppDefinition appDefinition)
Description copied from class:NeedsAppDefinitionCmd
Subclasses must implement in this method their normal command logic.- Specified by:
execute
in classNeedsAppDefinitionCmd<Void>
-
-