Package com.flowable.app.engine.impl.cmd
Class AddIdentityLinkCmd
- java.lang.Object
-
- com.flowable.app.engine.impl.cmd.NeedsAppDefinitionCmd<Void>
-
- com.flowable.app.engine.impl.cmd.AddIdentityLinkCmd
-
- All Implemented Interfaces:
Serializable
,Command<Void>
public class AddIdentityLinkCmd extends NeedsAppDefinitionCmd<Void>
- Author:
- Tijs Rademakers
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static int
IDENTITY_GROUP
static int
IDENTITY_USER
protected String
identityId
protected int
identityIdType
protected String
identityType
-
Fields inherited from class com.flowable.app.engine.impl.cmd.NeedsAppDefinitionCmd
appDefinitionId
-
-
Constructor Summary
Constructors Constructor Description AddIdentityLinkCmd(String appDefinitionId, String identityId, int identityIdType, String identityType)
-
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 appDefinitionId, String identityId, int identityIdType, String identityType)
-
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
-
identityId
protected String identityId
-
identityIdType
protected int identityIdType
-
identityType
protected String identityType
-
-
Method Detail
-
validateParams
protected void validateParams(String appDefinitionId, String identityId, int identityIdType, String identityType)
-
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>
-
-