Enum Class SecurityAccessLevel
- All Implemented Interfaces:
Serializable
,Comparable<SecurityAccessLevel>
,Constable
Indicates the level of access that a user has to some data.
- Since:
- 1.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe user has no access to the data.The user may see that the data exists, and the system may look at the data on the user's behalf (when searching, for example), but the user cannot see the data directly.The user has direct, read-only access to the data.The user can read, modify, and delete the data. -
Method Summary
Modifier and TypeMethodDescriptionstatic SecurityAccessLevel
Returns the enum constant of this class with the specified name.static SecurityAccessLevel[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
The user has no access to the data. They may not read it, and they may not even be told that it exists. -
READ_CLOAKED
The user may see that the data exists, and the system may look at the data on the user's behalf (when searching, for example), but the user cannot see the data directly. -
READ_ONLY
The user has direct, read-only access to the data. -
UPDATE
The user can read, modify, and delete the data.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-