org.opends.server.admin.std.server
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
 void addChangeListener(ConfigurationChangeListener<RootDNUserCfg> listener)
          Register to be notified when this Root DN User is changed.
 java.lang.Class<? extends RootDNUserCfg> configurationClass()
          Gets the configuration class associated with this Root DN User.
 java.util.SortedSet<DN> getAlternateBindDN()
          Gets the "alternate-bind-dn" property.
 void removeChangeListener(ConfigurationChangeListener<RootDNUserCfg> listener)
          Deregister an existing Root DN User configuration change listener.
 
Methods inherited from interface org.opends.server.admin.Configuration
dn
 

Method Detail

configurationClass

java.lang.Class<? extends RootDNUserCfg> configurationClass()
Gets the configuration class associated with this Root DN User.

Specified by:
configurationClass in interface Configuration
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

java.util.SortedSet<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.