Package com.flowable.app.engine.impl.cmd
Class AddIdentityLinkCmd
- java.lang.Object
-
- com.flowable.app.engine.impl.cmd.NeedsAppDefinitionCmd<java.lang.Void>
-
- com.flowable.app.engine.impl.cmd.AddIdentityLinkCmd
-
- All Implemented Interfaces:
java.io.Serializable
,org.flowable.common.engine.impl.interceptor.Command<java.lang.Void>
public class AddIdentityLinkCmd extends NeedsAppDefinitionCmd<java.lang.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 java.lang.String
identityId
protected int
identityIdType
protected java.lang.String
identityType
-
Fields inherited from class com.flowable.app.engine.impl.cmd.NeedsAppDefinitionCmd
appDefinitionId
-
-
Constructor Summary
Constructors Constructor Description AddIdentityLinkCmd(java.lang.String appDefinitionId, java.lang.String identityId, int identityIdType, java.lang.String identityType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected java.lang.Void
execute(org.flowable.common.engine.impl.interceptor.CommandContext commandContext, org.flowable.app.api.repository.AppDefinition appDefinition)
Subclasses must implement in this method their normal command logic.protected void
validateParams(java.lang.String appDefinitionId, java.lang.String identityId, int identityIdType, java.lang.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 java.lang.String identityId
-
identityIdType
protected int identityIdType
-
identityType
protected java.lang.String identityType
-
-
Method Detail
-
validateParams
protected void validateParams(java.lang.String appDefinitionId, java.lang.String identityId, int identityIdType, java.lang.String identityType)
-
execute
protected java.lang.Void execute(org.flowable.common.engine.impl.interceptor.CommandContext commandContext, org.flowable.app.api.repository.AppDefinition appDefinition)
Description copied from class:NeedsAppDefinitionCmd
Subclasses must implement in this method their normal command logic.- Specified by:
execute
in classNeedsAppDefinitionCmd<java.lang.Void>
-
-