Class CheckPermissionWorkflowAction

java.lang.Object
de.uplanet.lucy.server.workflow.action.AbstractWorkflowAction
de.uplanet.lucy.server.workflow.action.CheckPermissionWorkflowAction
All Implemented Interfaces:
IActivatableWorkflowObject, INamedWorkflowObject, INeedWorkflow, IWorkflowAction, IWorkflowObject, Serializable

public final class CheckPermissionWorkflowAction extends AbstractWorkflowAction
See Also:
  • Constructor Details

    • CheckPermissionWorkflowAction

      public CheckPermissionWorkflowAction(String p_strGuid)
  • Method Details

    • getPermissionClass

      public String getPermissionClass()
    • setPermissionClass

      public void setPermissionClass(String p_strClass)
    • getPermissionName

      public String getPermissionName()
    • setPermissionName

      public void setPermissionName(String p_strName)
    • getPermissionActions

      public String getPermissionActions()
    • setPermissionActions

      public void setPermissionActions(String p_strActions)
    • isAlwaysGrant

      public boolean isAlwaysGrant()
    • setAlwaysGrant

      public void setAlwaysGrant(boolean p_bAlwaysGrant)
    • isAlwaysDeny

      public boolean isAlwaysDeny()
    • setAlwaysDeny

      public void setAlwaysDeny(boolean p_bAlwaysDeny)
    • process

      public WorkflowTransition process(IWorkflowEvent p_evt, de.uplanet.lucy.server.workflow.IWorkflowProcessingContext p_wfCtx, de.uplanet.lucy.server.IProcessingContext p_ctx) throws Exception
      Description copied from interface: IWorkflowAction
      Process a workflow event in the given context.

      Normally, a workflow action should return its efferent transition, regardless whether it is active, or not.

      Parameters:
      p_evt - The event to be processed.
      p_wfCtx - The workflow processing context.
      p_ctx - The processing context.
      Returns:
      The efferent transition, or null.
      Throws:
      InterruptedException - If processing of this action has been interrupted.
      Exception - If an error occurred.