Uses of Class
org.opends.server.types.Privilege
-
Packages that use Privilege Package Description org.forgerock.opendj.server.core Classes implementing core server APIs.org.opends.server.api Contains a number of API declarations for use throughout the Directory Server.org.opends.server.core Contains various classes that comprise the core of the Directory Server codebase.org.opends.server.types Contains implementations for a number of Directory Server data types. -
-
Uses of Privilege in org.forgerock.opendj.server.core
Methods in org.forgerock.opendj.server.core with parameters of type Privilege Modifier and Type Method Description boolean
RequestContext. hasPrivilege(Privilege privilege)
Returnstrue
if the authorized user has the specified privilege. -
Uses of Privilege in org.opends.server.api
Methods in org.opends.server.api with parameters of type Privilege Modifier and Type Method Description boolean
ClientConnection. hasAllPrivileges(Privilege[] privileges, Operation operation)
Indicates whether the authenticate client has all of the specified privileges.static boolean
ClientConnection. hasPrivilege(Entry authorizationEntry, Privilege privilege)
Indicate whether the specified authorization entry parameter has the specified privilege.boolean
ClientConnection. hasPrivilege(Privilege privilege, Operation operation)
Indicates whether the authenticated client has the specified privilege. -
Uses of Privilege in org.opends.server.core
Methods in org.opends.server.core with parameters of type Privilege Modifier and Type Method Description boolean
CoreConfigManager. isDisabled(Privilege privilege)
Indicates whether the specified privilege is disabled. -
Uses of Privilege in org.opends.server.types
Methods in org.opends.server.types that return Privilege Modifier and Type Method Description static Privilege
Privilege. privilegeForName(String lowerPrivName)
Retrieves the privilege with the specified name.static Privilege
Privilege. valueOf(String name)
Returns the enum constant of this type with the specified name.static Privilege[]
Privilege. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.opends.server.types that return types with arguments of type Privilege Modifier and Type Method Description static Set<Privilege>
Privilege. getDefaultRootPrivileges()
Retrieves the set of privileges that should be automatically granted to root users if the root privilege set is not specified in the configuration.Methods in org.opends.server.types with parameters of type Privilege Modifier and Type Method Description boolean
Operation. hasPrivilege(Privilege privilege)
Returns whether the operation has the provided privilege.
-