Interface RootDNUserCfg
-
- All Superinterfaces:
Configuration
public interface RootDNUserCfg extends Configuration
A server-side interface for querying 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 voidaddChangeListener(ConfigurationChangeListener<RootDNUserCfg> listener)Register to be notified when this Root DN User is changed.Class<? extends RootDNUserCfg>configurationClass()Gets the configuration class associated with this Root DN User.SortedSet<org.forgerock.opendj.ldap.DN>getAlternateBindDN()Gets the "alternate-bind-dn" property.voidremoveChangeListener(ConfigurationChangeListener<RootDNUserCfg> listener)Deregister an existing Root DN User configuration change listener.-
Methods inherited from interface org.forgerock.opendj.config.Configuration
dn, name
-
-
-
-
Method Detail
-
configurationClass
Class<? extends RootDNUserCfg> configurationClass()
Gets the configuration class associated with this Root DN User.- Specified by:
configurationClassin interfaceConfiguration- Returns:
- Returns the configuration class associated with this Root DN User.
-
addChangeListener
void addChangeListener(ConfigurationChangeListener<RootDNUserCfg> listener)
Register to be notified when this Root DN User is changed.- Parameters:
listener- The Root DN User configuration change listener.
-
removeChangeListener
void removeChangeListener(ConfigurationChangeListener<RootDNUserCfg> listener)
Deregister an existing Root DN User configuration change listener.- Parameters:
listener- The Root DN User configuration change listener.
-
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 an unmodifiable set containing the values of the "alternate-bind-dn" property.
-
-