Class CheckPermissionWorkflowCondition

    • Constructor Detail

      • CheckPermissionWorkflowCondition

        public CheckPermissionWorkflowCondition​(String p_strGuid)
    • Method Detail

      • 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)
      • getTransitionGrant

        public String getTransitionGrant()
      • setTransitionGrant

        public void setTransitionGrant​(String p_strTransitionGrant)
      • getTransitionDeny

        public String getTransitionDeny()
      • setTransitionDeny

        public void setTransitionDeny​(String p_strTransitionDeny)
      • 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: IWorkflowCondition
        Process a workflow event in the given context.

        The workflow engine will follow the resulting transitions in the order they were returned in the array.

        Normally, a workflow condition should return null or an empty array if it is not active.

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