Package | Description |
---|---|
org.forgerock.opendj.config.server |
Server-side administration interface.
|
org.forgerock.opendj.config.server.spi |
Contains a number of API declarations for use throughout the
Directory Server.
|
org.opends.server.backends |
Contains various Directory Server backend implementations.
|
org.opends.server.backends.jeb |
Contains the code for the Directory Server backend that uses the Berkeley DB
Java Edition as the repository for storing entry and index information.
|
org.opends.server.backends.pdb |
Contains the code for the Directory Server backend that uses Persistit
as the repository for storing entry and index information.
|
org.opends.server.backends.pluggable |
Contains the code for implementing Directory Server pluggable storage backends.
|
org.opends.server.backends.pluggable.spi |
Interfaces and classes required when implementing new storage
engines for the pluggable backend.
|
org.opends.server.backends.task |
Contains the code for the Directory Server backend that provides an interface
for executing administrative tasks.
|
org.opends.server.config |
Contains code used to interact with the Directory Server configuration.
|
org.opends.server.core |
Contains various classes that comprise the core of the Directory Server
codebase.
|
org.opends.server.crypto |
This package implements the Directory Server cryptographic framework,
which is described in the
CrytpoManager design document.
|
org.opends.server.extensions |
Contains various implementations of Directory Server APIs that are not
appropriate for other packages.
|
org.opends.server.loggers |
Contains implementations of Directory Server access, error, and debug
loggers.
|
org.opends.server.plugins |
Contains the implementation for various Directory Server plugins.
|
org.opends.server.plugins.profiler |
Contains the implementation of the Directory Server plugin that acts as an
embedded profiler that can be used for performance analysis of the server
under load.
|
org.opends.server.protocols |
Contains various Directory Server connection handler implementations which
will be used to accept connections from and perform communication with
clients over various protocols.
|
org.opends.server.protocols.http |
Contains the implementation for the Directory Server connection handler that
is responsible for interacting with clients using HTTP.
|
org.opends.server.protocols.jmx |
Contains the implementation for the Directory Server connection handler that
is responsible for interacting with clients using JMX.
|
org.opends.server.protocols.ldap |
Contains the implementation for the Directory Server connection handler that
is responsible for interacting with clients using LDAPv3.
|
org.opends.server.replication.plugin |
This package contains the part of the Multi-master
replication code that works on the Directory Server side.
|
org.opends.server.replication.server |
This package contains the code for the Replication Server part
of the Multimaster replication feature.
|
org.opends.server.schema |
Contains implementations of various Directory Server schema elements.
|
Modifier and Type | Method and Description |
---|---|
ConfigChangeResult |
ServerManagedObjectAddListener.applyConfigurationAdd(ServerManagedObject<? extends T> mo)
Adds a new server managed object to this add listener.
|
ConfigChangeResult |
ConfigurationAddListener.applyConfigurationAdd(T configuration)
Adds a new configuration to this add listener.
|
ConfigChangeResult |
ServerManagedObjectChangeListener.applyConfigurationChange(ServerManagedObject<? extends T> mo)
Applies the server managed object changes to this change listener.
|
ConfigChangeResult |
ConfigurationChangeListener.applyConfigurationChange(T configuration)
Applies the configuration changes to this change listener.
|
ConfigChangeResult |
ServerManagedObjectDeleteListener.applyConfigurationDelete(ServerManagedObject<? extends T> mo)
Deletes an existing server managed object from this delete listener.
|
ConfigChangeResult |
ConfigurationDeleteListener.applyConfigurationDelete(T configuration)
Deletes an existing configuration from this delete listener.
|
Modifier and Type | Method and Description |
---|---|
void |
ConfigChangeResult.aggregate(ConfigChangeResult other)
Aggregates the results from the provided config change result.
|
Modifier and Type | Method and Description |
---|---|
ConfigChangeResult |
ConfigAddListener.applyConfigurationAdd(Entry configEntry)
Attempts to apply a new configuration based on the provided added entry.
|
ConfigChangeResult |
ConfigChangeListener.applyConfigurationChange(Entry configEntry)
Attempts to apply a new configuration to this Directory Server component
based on the provided changed entry.
|
ConfigChangeResult |
ConfigDeleteListener.applyConfigurationDelete(Entry configEntry)
Attempts to apply a new configuration based on the provided deleted
entry.
|
Modifier and Type | Method and Description |
---|---|
ConfigChangeResult |
BackupBackend.applyConfigurationChange(BackupBackendCfg cfg) |
ConfigChangeResult |
LDIFBackend.applyConfigurationChange(LDIFBackendCfg configuration) |
ConfigChangeResult |
MonitorBackend.applyConfigurationChange(MonitorBackendCfg backendCfg) |
ConfigChangeResult |
RootDSEBackend.applyConfigurationChange(RootDSEBackendCfg cfg) |
ConfigChangeResult |
SchemaBackend.applyConfigurationChange(SchemaBackendCfg backendCfg) |
ConfigChangeResult |
TrustStoreBackend.applyConfigurationChange(TrustStoreBackendCfg cfg) |
Modifier and Type | Method and Description |
---|---|
ConfigChangeResult |
JEStorage.applyConfigurationChange(JEBackendCfg cfg) |
Modifier and Type | Method and Description |
---|---|
ConfigChangeResult |
PDBStorage.applyConfigurationChange(PDBBackendCfg cfg) |
Modifier and Type | Method and Description |
---|---|
ConfigChangeResult |
RootContainer.applyConfigurationChange(PluggableBackendCfg configuration) |
ConfigChangeResult |
EntryContainer.applyConfigurationChange(PluggableBackendCfg cfg) |
ConfigChangeResult |
BackendImpl.applyConfigurationChange(PluggableBackendCfg newCfg) |
Modifier and Type | Method and Description |
---|---|
static void |
StorageUtils.addErrorMessage(ConfigChangeResult ccr,
LocalizableMessage message)
Adds the provided message to the provided config change result.
|
static void |
StorageUtils.checkDBDirExistsOrCanCreate(File backendDir,
ConfigChangeResult ccr,
boolean cleanup)
Checks a directory exists or can actually be created.
|
static void |
StorageUtils.checkDBDirPermissions(String dbDirPermissions,
DN configDN,
ConfigChangeResult ccr)
Returns false if directory permissions in the configuration are invalid.
|
static void |
StorageUtils.setDBDirPermissions(File backendDir,
String dbDirPermissions,
DN configDN,
ConfigChangeResult ccr)
Sets files permissions on the backend directory.
|
Modifier and Type | Method and Description |
---|---|
ConfigChangeResult |
TaskBackend.applyConfigurationChange(TaskBackendCfg configEntry) |
Modifier and Type | Method and Description |
---|---|
ConfigChangeResult |
AdministrationConnector.applyConfigurationChange(AdministrationConnectorCfg configuration)
Applies the configuration changes to this change listener.
|
Modifier and Type | Method and Description |
---|---|
ConfigChangeResult |
CryptoManagerImpl.applyConfigurationChange(CryptoManagerCfg cfg) |
Modifier and Type | Method and Description |
---|---|
ConfigChangeResult |
ProfilerPlugin.applyConfigurationChange(ProfilerPluginCfg configuration)
Applies the configuration changes to this change listener.
|
Modifier and Type | Method and Description |
---|---|
ConfigChangeResult |
LDIFConnectionHandler.applyConfigurationChange(LDIFConnectionHandlerCfg configuration) |
Modifier and Type | Method and Description |
---|---|
ConfigChangeResult |
HTTPConnectionHandler.applyConfigurationChange(HTTPConnectionHandlerCfg config) |
Modifier and Type | Method and Description |
---|---|
ConfigChangeResult |
JmxConnectionHandler.applyConfigurationChange(JMXConnectionHandlerCfg config) |
Modifier and Type | Method and Description |
---|---|
ConfigChangeResult |
LDAPConnectionHandler.applyConfigurationChange(LDAPConnectionHandlerCfg config) |
Modifier and Type | Method and Description |
---|---|
ConfigChangeResult |
ReplicationServer.applyConfigurationChange(ReplicationServerCfg configuration) |
Modifier and Type | Method and Description |
---|---|
ConfigChangeResult |
AttributeTypeSyntax.applyConfigurationChange(AttributeTypeDescriptionAttributeSyntaxCfg configuration) |
ConfigChangeResult |
CertificateSyntax.applyConfigurationChange(CertificateAttributeSyntaxCfg configuration) |
ConfigChangeResult |
CollationMatchingRuleFactory.applyConfigurationChange(CollationMatchingRuleCfg configuration) |
ConfigChangeResult |
CoreSchemaProvider.applyConfigurationChange(CoreSchemaCfg configuration) |
ConfigChangeResult |
CountryStringSyntax.applyConfigurationChange(CountryStringAttributeSyntaxCfg configuration) |
ConfigChangeResult |
DirectoryStringSyntax.applyConfigurationChange(DirectoryStringAttributeSyntaxCfg configuration) |
ConfigChangeResult |
JPEGSyntax.applyConfigurationChange(JPEGAttributeSyntaxCfg configuration) |
ConfigChangeResult |
TelephoneNumberSyntax.applyConfigurationChange(TelephoneNumberAttributeSyntaxCfg configuration) |
Copyright 2010-2017 ForgeRock AS.