Uses of Class
org.opends.server.api.Backend
-
Packages that use Backend Package Description org.opends.server.api 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.pluggable Contains the code for implementing Directory Server pluggable storage backends.org.opends.server.backends.task Contains the code for the Directory Server backend that provides an interface for executing administrative tasks.org.opends.server.core Contains various classes that comprise the core of the Directory Server codebase. -
-
Uses of Backend in org.opends.server.api
Subclasses of Backend in org.opends.server.api Modifier and Type Class Description classLocalBackend<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
Subclasses of Backend in org.opends.server.backends Modifier and Type Class Description classChangelogBackendA backend that provides access to the changelog, i.e.classConfigurationBackendBack-end responsible for management of configuration entries.classLDIFBackendThis class provides a backend implementation that stores the underlying data in an LDIF file.classMemoryBackendThis class defines a very simple backend that stores its information in memory.classMonitorBackendThis class defines a backend to hold Directory Server monitor entries.classNullBackendThis class implements /dev/null like backend for development and testing.classProxyBackendImplements the proxy backend, i.e.classRootDSEBackendThis class defines a backend to hold the Directory Server root DSE.classSchemaBackendThis class defines a backend to hold the Directory Server schema information. -
Uses of Backend in org.opends.server.backends.jeb
Subclasses of Backend in org.opends.server.backends.jeb Modifier and Type Class Description classJEBackendClass defined in the configuration for this backend type. -
Uses of Backend in org.opends.server.backends.pluggable
Subclasses of Backend in org.opends.server.backends.pluggable Modifier and Type Class Description classBackendImpl<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
Subclasses of Backend in org.opends.server.backends.task Modifier and Type Class Description classTaskBackendThis 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
Methods in org.opends.server.core that return Backend Modifier and Type Method Description Backend<?>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.Methods in org.opends.server.core that return types with arguments of type Backend Modifier and Type Method Description Set<Backend<?>>BackendConfigManager. getAllBackends()Returns the set of all backends.Set<Backend<?>>BackendConfigManager. getSubordinateBackends(Backend<?> backend)Retrieves the set of subordinate backends of the provided backend.Methods in org.opends.server.core with parameters of type Backend Modifier and Type Method Description voidBackendConfigManager. deregisterBackend(Backend<? extends BackendCfg> backend)Deregisters a backend.voidBackendConfigManager. deregisterBaseDNs(Backend<? extends BackendCfg> backend)Deregisters all the base DNs for the provided backend.Set<Backend<?>>BackendConfigManager. getSubordinateBackends(Backend<?> backend)Retrieves the set of subordinate backends of the provided backend.voidBackendConfigManager. registerBackend(Backend<? extends BackendCfg> backend)Registers a backend.Pair<Set<Dn>,Set<Dn>>BackendConfigManager. registerBaseDNs(Backend<? extends BackendCfg> backend, Set<Dn> newBaseDns)Registers the provided base DNs for the provided backend.
-