Class DeleteIdentityLinkCmd

  • All Implemented Interfaces:
    java.io.Serializable, org.flowable.common.engine.impl.interceptor.Command<java.lang.Void>

    public class DeleteIdentityLinkCmd
    extends NeedsAppDefinitionCmd<java.lang.Void>
    Author:
    Tijs Rademakers
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      DeleteIdentityLinkCmd​(java.lang.String appDefinitionId, java.lang.String userId, java.lang.String groupId, java.lang.String type)  
    • 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 userId, java.lang.String groupId, java.lang.String type, java.lang.String appDefinitionId)  
      • Methods inherited from class java.lang.Object

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

      • userId

        protected java.lang.String userId
      • groupId

        protected java.lang.String groupId
      • type

        protected java.lang.String type
    • Constructor Detail

      • DeleteIdentityLinkCmd

        public DeleteIdentityLinkCmd​(java.lang.String appDefinitionId,
                                     java.lang.String userId,
                                     java.lang.String groupId,
                                     java.lang.String type)
    • Method Detail

      • validateParams

        protected void validateParams​(java.lang.String userId,
                                      java.lang.String groupId,
                                      java.lang.String type,
                                      java.lang.String appDefinitionId)
      • 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>