Uses of Class
org.opends.server.api.Backend
Package
Description
Contains a number of API declarations for use throughout the Directory Server.
Contains various Directory Server backend implementations.
Contains the code for the Directory Server backend that uses the Berkeley DB Java Edition as the repository for
storing entry and index information.
Contains the code for implementing Directory Server pluggable storage backends.
Contains the code for the Directory Server backend that provides an interface for executing administrative tasks.
Contains various classes that comprise the core of the Directory Server codebase.
-
Uses of Backend in org.opends.server.api
Modifier and TypeClassDescriptionclass
LocalBackend<C extends Configuration>
This class defines the set of methods and structures that must be implemented for a Directory Server backend. -
Uses of Backend in org.opends.server.backends
Modifier and TypeClassDescriptionfinal class
A backend that provides access to the changelog, i.e.final class
Back-end responsible for management of configuration entries.final class
This class provides a backend implementation that stores the underlying data in an LDIF file.final class
This class defines a very simple backend that stores its information in memory.final class
This class defines a backend to hold Directory Server monitor entries.final class
This class implements /dev/null like backend for development and testing.final class
Implements the proxy backend, i.e.final class
This class defines a backend to hold the Directory Server root DSE.final class
This class defines a backend to hold the Directory Server schema information. -
Uses of Backend in org.opends.server.backends.jeb
Modifier and TypeClassDescriptionfinal class
Class defined in the configuration for this backend type. -
Uses of Backend in org.opends.server.backends.pluggable
Modifier and TypeClassDescriptionclass
BackendImpl<C extends PluggableBackendCfg>
This is an implementation of a Directory Server Backend which stores entries locally in a pluggable storage. -
Uses of Backend in org.opends.server.backends.task
Modifier and TypeClassDescriptionfinal class
This class provides an implementation of a Directory Server backend that may be used to execute various kinds of administrative tasks on a one-time or recurring basis. -
Uses of Backend in org.opends.server.core
Modifier and TypeMethodDescriptionBackend<?>
BackendConfigManager.findBackendForEntry
(Dn entryDn) Retrieves the backend that should be used to handle operations on the specified entry.Backend<?>
BackendConfigManager.getBackendWithBaseDn
(Dn baseDn) Retrieves the backend with the specified base DN.Modifier and TypeMethodDescriptionBackendConfigManager.getAllBackends()
Returns the set of all backends.BackendConfigManager.getSubordinateBackends
(Backend<?> backend) Retrieves the set of subordinate backends of the provided backend.Modifier and TypeMethodDescriptionvoid
BackendConfigManager.deregisterBackend
(Backend<? extends BackendCfg> backend) Deregisters a backend.void
BackendConfigManager.deregisterBaseDNs
(Backend<? extends BackendCfg> backend) Deregisters all the base DNs for the provided backend.BackendConfigManager.getSubordinateBackends
(Backend<?> backend) Retrieves the set of subordinate backends of the provided backend.void
BackendConfigManager.registerBackend
(Backend<? extends BackendCfg> backend) Registers a backend.BackendConfigManager.registerBaseDNs
(Backend<? extends BackendCfg> backend, Set<Dn> newBaseDns) Registers the provided base DNs for the provided backend.