Class CheckRightsCondition

    • Method Detail

      • passesCondition

        public boolean passesCondition​(Map transientVars,
                                       Map args,
                                       com.opensymphony.module.propertyset.PropertySet ps)
                                throws com.opensymphony.workflow.WorkflowException
        Specified by:
        passesCondition in interface com.opensymphony.workflow.Condition
        Throws:
        com.opensymphony.workflow.WorkflowException
      • _checkRights

        protected boolean _checkRights​(Map transientVars,
                                       Map args,
                                       UserIdentity user,
                                       String rightNeeded)
                                throws com.opensymphony.workflow.WorkflowException
        Check if the current user has the needed right.
        Parameters:
        transientVars - variables that will not be persisted.
        args - the properties for this function invocation.
        user - the current user.
        rightNeeded - the needed right.
        Returns:
        true if the user has the right, false otherwise.
        Throws:
        com.opensymphony.workflow.WorkflowException - if an error occurs.
      • checkMultipleAndRights

        protected boolean checkMultipleAndRights​(UserIdentity user,
                                                 String[] rights,
                                                 Object context)
        Check that a user has all the given rights on a context (AND condition).
        Parameters:
        user - the user.
        rights - the rights to check.
        context - the right context.
        Returns:
        true if the user has all the rights, false otherwise.
      • checkMultipleOrRights

        protected boolean checkMultipleOrRights​(UserIdentity user,
                                                String[] rights,
                                                Object context)
        Check that a user has at least one of the given rights on a context (OR condition).
        Parameters:
        user - the user.
        rights - the rights to check.
        context - the right context.
        Returns:
        true if the user has at least one right, false otherwise.
      • hasRight

        protected boolean hasRight​(UserIdentity user,
                                   String right,
                                   Object context)
        Test if a user has a right on a context.
        Parameters:
        user - the user
        right - the right to check.
        context - the right context.
        Returns:
        true if the user has the right, false otherwise.
      • _computeContext

        protected Object _computeContext​(Map transientVars,
                                         Map args,
                                         UserIdentity user,
                                         String right)
                                  throws com.opensymphony.workflow.WorkflowException
        Compute the context to use.
        Default implementation uses standard context "/cms".
        Parameters:
        transientVars - variables that will not be persisted.
        args - the properties for this function invocation.
        user - the current user.
        right - the needed right.
        Returns:
        the computed context.
        Throws:
        com.opensymphony.workflow.WorkflowException - if an error occurs.