Interface RootDNUserCfgClient
-
- All Superinterfaces:
ConfigurationClient
public interface RootDNUserCfgClient extends ConfigurationClient
A client-side interface for reading and modifying Root DN User settings.A Root DN User are administrative users who can granted special privileges that are not available to non-root users (for example, the ability to bind to the server in lockdown mode).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ManagedObjectDefinition<? extends RootDNUserCfgClient,? extends RootDNUserCfg>definition()Get the configuration definition associated with this Root DN User.SortedSet<org.forgerock.opendj.ldap.DN>getAlternateBindDN()Gets the "alternate-bind-dn" property.voidsetAlternateBindDN(Collection<org.forgerock.opendj.ldap.DN> values)Sets the "alternate-bind-dn" property.-
Methods inherited from interface org.forgerock.opendj.config.ConfigurationClient
commit, properties
-
-
-
-
Method Detail
-
definition
ManagedObjectDefinition<? extends RootDNUserCfgClient,? extends RootDNUserCfg> definition()
Get the configuration definition associated with this Root DN User.- Specified by:
definitionin interfaceConfigurationClient- Returns:
- Returns the configuration definition associated with this Root DN User.
-
getAlternateBindDN
SortedSet<org.forgerock.opendj.ldap.DN> getAlternateBindDN()
Gets the "alternate-bind-dn" property.Specifies one or more alternate DNs that can be used to bind to the server as this root user.
- Returns:
- Returns the values of the "alternate-bind-dn" property.
-
setAlternateBindDN
void setAlternateBindDN(Collection<org.forgerock.opendj.ldap.DN> values) throws PropertyException
Sets the "alternate-bind-dn" property.Specifies one or more alternate DNs that can be used to bind to the server as this root user.
- Parameters:
values- The values of the "alternate-bind-dn" property.- Throws:
PropertyException- If one or more of the new values are invalid.
-
-