Class 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
    • 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 java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • identityId

        protected java.lang.String identityId
      • identityIdType

        protected int identityIdType
      • identityType

        protected java.lang.String identityType
    • Constructor Detail

      • AddIdentityLinkCmd

        public AddIdentityLinkCmd​(java.lang.String appDefinitionId,
                                  java.lang.String identityId,
                                  int identityIdType,
                                  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 class NeedsAppDefinitionCmd<java.lang.Void>