Class AddIdentityLinkCmd

java.lang.Object
com.flowable.app.engine.impl.cmd.NeedsAppDefinitionCmd<Void>
com.flowable.app.engine.impl.cmd.AddIdentityLinkCmd
All Implemented Interfaces:
Serializable, org.flowable.common.engine.impl.interceptor.Command<Void>

public class AddIdentityLinkCmd extends NeedsAppDefinitionCmd<Void>
Author:
Tijs Rademakers
See Also:
  • Field Details

    • IDENTITY_USER

      public static final int IDENTITY_USER
      See Also:
    • IDENTITY_GROUP

      public static final int IDENTITY_GROUP
      See Also:
    • identityId

      protected String identityId
    • identityIdType

      protected int identityIdType
    • identityType

      protected String identityType
  • Constructor Details

    • AddIdentityLinkCmd

      public AddIdentityLinkCmd(String appDefinitionId, String identityId, int identityIdType, String identityType)
  • Method Details

    • validateParams

      protected void validateParams(String appDefinitionId, String identityId, int identityIdType, String identityType)
    • execute

      protected 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 class NeedsAppDefinitionCmd<Void>