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 void
addChangeListener(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.boolean
isShowAllAttributes()
Gets the "show-all-attributes" property.boolean
isShowSubordinateNamingContexts()
Gets the "show-subordinate-naming-contexts" property.void
removeChangeListener(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:
configurationClass
in 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
Default value:
false
- Returns:
- Returns the value of the "show-subordinate-naming-contexts" property.
-
-