Enum StateScope

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      all
      Permissions with this scope allows are given to all contents, regardless of whom the content is assigned to.
      assignedTo
      Permissions with this scope allows are given only when the content is assigned to the user, one of his groups, or none.
      viewAll
      Permissions with this scope allows the user to see all contents, however is not allowed to edit none of them or create a new one.
      viewCreatedBy
      Permissions with this scope allows the user to see only the contents it has created, however is not allowed to edit none of them or create a new one.
    • Enum Constant Detail

      • all

        public static final StateScope all
        Permissions with this scope allows are given to all contents, regardless of whom the content is assigned to.
        Since:
        6.0.2
      • assignedTo

        public static final StateScope assignedTo
        Permissions with this scope allows are given only when the content is assigned to the user, one of his groups, or none.
        Since:
        6.0.2
      • viewAll

        public static final StateScope viewAll
        Permissions with this scope allows the user to see all contents, however is not allowed to edit none of them or create a new one.
        Since:
        6.0.2
      • viewCreatedBy

        public static final StateScope viewCreatedBy
        Permissions with this scope allows the user to see only the contents it has created, however is not allowed to edit none of them or create a new one.
        Since:
        6.0.2
    • Method Detail

      • values

        public static StateScope[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (StateScope c : StateScope.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static StateScope valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null