Package lumis.content.workflow
Enum StateScope
- java.lang.Object
-
- java.lang.Enum<StateScope>
-
- lumis.content.workflow.StateScope
-
- All Implemented Interfaces:
Serializable
,Comparable<StateScope>
@StableMinor(version="14.0", sinceVersion="6.1") public enum StateScope extends Enum<StateScope>
Enumeration of all available scopes for a state.- Since:
- 6.0.2
- Version:
- $Revision: 24476 $ $Date: 2021-04-28 11:28:23 -0300 (Wed, 28 Apr 2021) $
-
-
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.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StateScope
valueOf(String name)
Returns the enum constant of this type with the specified name.static StateScope[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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 nameNullPointerException
- if the argument is null
-
-