Interface RootDSEBackendCfgClient
-
- All Superinterfaces:
ConfigurationClient
public interface RootDSEBackendCfgClient extends ConfigurationClient
A client-side interface for reading and modifying 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 ManagedObjectDefinition<? extends RootDSEBackendCfgClient,? extends RootDSEBackendCfg>definition()Get the configuration definition associated with this Root DSE Backend.BooleanisShowAllAttributes()Gets the "show-all-attributes" property.booleanisShowSubordinateNamingContexts()Gets the "show-subordinate-naming-contexts" property.voidsetShowAllAttributes(boolean value)Sets the "show-all-attributes" property.voidsetShowSubordinateNamingContexts(boolean value)Sets the "show-subordinate-naming-contexts" property.-
Methods inherited from interface org.forgerock.opendj.config.ConfigurationClient
commit, properties
-
-
-
-
Method Detail
-
definition
ManagedObjectDefinition<? extends RootDSEBackendCfgClient,? extends RootDSEBackendCfg> definition()
Get the configuration definition associated with this Root DSE Backend.- Specified by:
definitionin interfaceConfigurationClient- Returns:
- Returns the configuration definition associated with this Root DSE Backend.
-
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.
-
setShowAllAttributes
void setShowAllAttributes(boolean value) throws PropertyExceptionSets 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.
- Parameters:
value- The value of the "show-all-attributes" property.- Throws:
PropertyException- If the new value is invalid.
-
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.
-
setShowSubordinateNamingContexts
void setShowSubordinateNamingContexts(boolean value) throws PropertyExceptionSets 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
- Parameters:
value- The value of the "show-subordinate-naming-contexts" property.- Throws:
PropertyException- If the new value is invalid.
-
-