Enum Class GlobalCfgDefn.DisabledPrivilege
java.lang.Object
java.lang.Enum<GlobalCfgDefn.DisabledPrivilege>
org.forgerock.opendj.server.config.meta.GlobalCfgDefn.DisabledPrivilege
- All Implemented Interfaces:
Serializable
,Comparable<GlobalCfgDefn.DisabledPrivilege>
,java.lang.constant.Constable
- Enclosing class:
- GlobalCfgDefn
Defines the set of permissible values for the "disabled-privilege" property.
Specifies the name of a privilege that should not be evaluated by the server.
If a privilege is disabled, then it is assumed that all clients (including unauthenticated clients) have that privilege.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAllows the user to request that the server process backup or backup purge tasks.Allows the user to request that the server process restore tasks.Allows the associated user to bypass access control checks performed by the server.Allows the associated user to bypass server lockdown mode.Allows the user to cancel operations in progress on other client connections.The privilege that provides the ability to perform read operations on the changelogAllows the associated user to read the server configuration.Allows the associated user to update the server configuration.Allows the user to participate in data synchronization.Allows the user to terminate other client connections.Allows the associated user to subscribe to receive JMX notifications.Allows the associated user to perform JMX read operations.Allows the associated user to perform JMX write operations.Allows the user to request that the server process LDIF export tasks.Allows the user to request that the server process LDIF import tasks.Allows the associated user to modify the server's access control configuration.Allows the user to read the server monitoring information.Allows the user to reset user passwords.Allows the user to make changes to the set of defined root privileges, as well as to grant and revoke privileges for users.Allows the user to use the proxied authorization control, or to perform a bind that specifies an alternate authorization identity.Allows the user to place and bring the server of lockdown mode.Allows the user to request that the server perform an in-core restart.Allows the user to request that the server shut down.Allows the associated user to perform LDAP subentry write operations.Allows the user to request that the server process a search that cannot be optimized using server indexes.Allows the user to make changes to the server schema. -
Method Summary
Modifier and TypeMethodDescriptiontoString()
Returns the enum constant of this class with the specified name.static GlobalCfgDefn.DisabledPrivilege[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BACKEND_BACKUP
Allows the user to request that the server process backup or backup purge tasks. -
BACKEND_RESTORE
Allows the user to request that the server process restore tasks. -
BYPASS_ACL
Allows the associated user to bypass access control checks performed by the server. -
BYPASS_LOCKDOWN
Allows the associated user to bypass server lockdown mode. -
CANCEL_REQUEST
Allows the user to cancel operations in progress on other client connections. -
CHANGELOG_READ
The privilege that provides the ability to perform read operations on the changelog -
CONFIG_READ
Allows the associated user to read the server configuration. -
CONFIG_WRITE
Allows the associated user to update the server configuration. The config-read privilege is also required. -
DATA_SYNC
Allows the user to participate in data synchronization. -
DISCONNECT_CLIENT
Allows the user to terminate other client connections. -
JMX_NOTIFY
Allows the associated user to subscribe to receive JMX notifications. -
JMX_READ
Allows the associated user to perform JMX read operations. -
JMX_WRITE
Allows the associated user to perform JMX write operations. -
LDIF_EXPORT
Allows the user to request that the server process LDIF export tasks. -
LDIF_IMPORT
Allows the user to request that the server process LDIF import tasks. -
MODIFY_ACL
Allows the associated user to modify the server's access control configuration. -
MONITOR_READ
Allows the user to read the server monitoring information. -
PASSWORD_RESET
Allows the user to reset user passwords. -
PRIVILEGE_CHANGE
Allows the user to make changes to the set of defined root privileges, as well as to grant and revoke privileges for users. -
PROXIED_AUTH
Allows the user to use the proxied authorization control, or to perform a bind that specifies an alternate authorization identity. -
SERVER_LOCKDOWN
Allows the user to place and bring the server of lockdown mode. -
SERVER_RESTART
Allows the user to request that the server perform an in-core restart. -
SERVER_SHUTDOWN
Allows the user to request that the server shut down. -
SUBENTRY_WRITE
Allows the associated user to perform LDAP subentry write operations. -
UNINDEXED_SEARCH
Allows the user to request that the server process a search that cannot be optimized using server indexes. -
UPDATE_SCHEMA
Allows the user to make changes to the server schema.
-
-
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
-
toString
- Overrides:
toString
in classEnum<GlobalCfgDefn.DisabledPrivilege>
-