Enum Class CertPermissionMapper.PermissionLevel
java.lang.Object
java.lang.Enum<CertPermissionMapper.PermissionLevel>
com.loomcache.server.security.CertPermissionMapper.PermissionLevel
- All Implemented Interfaces:
Serializable, Comparable<CertPermissionMapper.PermissionLevel>, Constable
- Enclosing class:
CertPermissionMapper
public static enum CertPermissionMapper.PermissionLevel
extends Enum<CertPermissionMapper.PermissionLevel>
Permission levels for certificate-based authorization.
Ordered from least to most privileged.
- Since:
- 2.0
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionFull administrative access including cluster operations.Read-only access to data structures.Read and write access to data structures. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static CertPermissionMapper.PermissionLevel[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
READ_ONLY
Read-only access to data structures. -
READ_WRITE
Read and write access to data structures. -
ADMIN
Full administrative access including cluster operations.
-
-
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
-