Interface RootDSEBackendCfg
-
- All Superinterfaces:
Configuration
public interface RootDSEBackendCfg extends Configuration
A server-side interface for querying Root DSE Backend settings.The Root DSE Backend contains the directory server root DSE.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddChangeListener(ConfigurationChangeListener<RootDSEBackendCfg> listener)Register to be notified when this Root DSE Backend is changed.Class<? extends RootDSEBackendCfg>configurationClass()Gets the configuration class associated with this Root DSE Backend.booleanisShowAllAttributes()Gets the "show-all-attributes" property.booleanisShowSubordinateNamingContexts()Gets the "show-subordinate-naming-contexts" property.voidremoveChangeListener(ConfigurationChangeListener<RootDSEBackendCfg> listener)Deregister an existing Root DSE Backend configuration change listener.-
Methods inherited from interface org.forgerock.opendj.config.Configuration
dn, name
-
-
-
-
Method Detail
-
configurationClass
Class<? extends RootDSEBackendCfg> configurationClass()
Gets the configuration class associated with this Root DSE Backend.- Specified by:
configurationClassin interfaceConfiguration- Returns:
- Returns the configuration class associated with this Root DSE Backend.
-
addChangeListener
void addChangeListener(ConfigurationChangeListener<RootDSEBackendCfg> listener)
Register to be notified when this Root DSE Backend is changed.- Parameters:
listener- The Root DSE Backend configuration change listener.
-
removeChangeListener
void removeChangeListener(ConfigurationChangeListener<RootDSEBackendCfg> listener)
Deregister an existing Root DSE Backend configuration change listener.- Parameters:
listener- The Root DSE Backend configuration change listener.
-
isShowAllAttributes
boolean isShowAllAttributes()
Gets the "show-all-attributes" property.Indicates whether all attributes in the root DSE are to be treated like user attributes (and therefore returned to clients by default) regardless of the directory server schema configuration.
- Returns:
- Returns the value of the "show-all-attributes" property.
-
isShowSubordinateNamingContexts
boolean isShowSubordinateNamingContexts()
Gets the "show-subordinate-naming-contexts" property.Indicates whether subordinate naming contexts should be visible in the namingContexts attribute of the RootDSE. By default only top level naming contexts are visible
- Returns:
- Returns the value of the "show-subordinate-naming-contexts" property.
-
-