Uses of Interface
org.opends.server.api.AlertGenerator
-
Packages that use AlertGenerator Package Description org.opends.server.api Contains a number of API declarations for use throughout the Directory Server.org.opends.server.authorization.dseecompat Contains the Directory Server Sun Java System Directory Server Enterprise Edition (dseecompat) compatability access control handler implementation.org.opends.server.backends Contains various Directory Server backend implementations.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.extensions Contains various implementations of Directory Server APIs that are not appropriate for other packages.org.opends.server.plugins Contains the implementation for various Directory Server plugins.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.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.schema Contains implementations of various Directory Server schema elements.org.opends.server.snmp This package contains Simple Network Management Protocol (SNMP) connection handler, the required classes to support MIB 2605 objects and SNMP requests, and the SNMP adaptor that allows a SNMP manager to access OpenDS monitoring information.org.opends.server.tools.dsbackup Classes related to dsbackup tool. -
-
Uses of AlertGenerator in org.opends.server.api
Methods in org.opends.server.api with parameters of type AlertGenerator Modifier and Type Method Description void
AlertHandler. sendAlertNotification(AlertGenerator generator, String alertType, LocalizableMessage alertMessage)
Sends an alert notification based on the provided information. -
Uses of AlertGenerator in org.opends.server.authorization.dseecompat
Classes in org.opends.server.authorization.dseecompat that implement AlertGenerator Modifier and Type Class Description class
AciListenerManager
The AciListenerManager updates an ACI list after each modification operation. -
Uses of AlertGenerator in org.opends.server.backends
Classes in org.opends.server.backends that implement AlertGenerator Modifier and Type Class Description class
LDIFBackend
This class provides a backend implementation that stores the underlying data in an LDIF file.class
SchemaBackend
This class defines a backend to hold the Directory Server schema information. -
Uses of AlertGenerator in org.opends.server.backends.task
Classes in org.opends.server.backends.task that implement AlertGenerator Modifier and Type Class Description class
TaskScheduler
This class defines a task scheduler for the Directory Server that will control the execution of scheduled tasks and other administrative functions that need to occur on a regular basis. -
Uses of AlertGenerator in org.opends.server.config
Classes in org.opends.server.config that implement AlertGenerator Modifier and Type Class Description class
ConfigurationHandler
Responsible for managing configuration, including listeners on configuration entries.Methods in org.opends.server.config with parameters of type AlertGenerator Modifier and Type Method Description void
JMXMBean. addAlertGenerator(AlertGenerator generator)
Adds the provided alert generator to the set of alert generators associated with this JMX MBean.void
JMXMBean. removeAlertGenerator(AlertGenerator generator)
Removes the provided alert generator from the set of alert generators associated with this JMX MBean. -
Uses of AlertGenerator in org.opends.server.core
Classes in org.opends.server.core that implement AlertGenerator Modifier and Type Class Description class
AccessControlConfigManager
This class manages the application-wide access-control configuration.class
DirectoryServer
This class defines the core of the Directory Server.Methods in org.opends.server.core with parameters of type AlertGenerator Modifier and Type Method Description void
DirectoryServer. deregisterAlertGenerator(AlertGenerator alertGenerator)
void
ServerContext. deregisterAlertGenerator(AlertGenerator alertGenerator)
Deregisters the provided alert generator with the Directory Server.void
DirectoryServer. registerAlertGenerator(AlertGenerator alertGenerator)
void
ServerContext. registerAlertGenerator(AlertGenerator alertGenerator)
Registers the provided alert generator with the Directory Server.void
DirectoryServer. sendAlertNotification(AlertGenerator generator, Severity severity, String alertType, LocalizableMessage alertMessage)
default void
ServerContext. sendAlertNotification(AlertGenerator generator, String alertType, LocalizableMessage alertMessage)
Sends an alert notification with the provided information.void
ServerContext. sendAlertNotification(AlertGenerator generator, Severity severity, String alertType, LocalizableMessage alertMessage)
Sends an alert notification with the provided information.void
DirectoryServer. uncaughtException(Thread t, Throwable e, AlertGenerator alertGenerator)
Provides a means of handling a case in which a thread is about to die because of an unhandled exception.void
ServerContext. uncaughtException(Thread t, Throwable e, AlertGenerator alertGenerator)
Provides a means of handling a case in which a thread is about to die because of an unhandled exception. -
Uses of AlertGenerator in org.opends.server.extensions
Classes in org.opends.server.extensions that implement AlertGenerator Modifier and Type Class Description class
DiskSpaceMonitor
This class provides an application-wide disk space monitoring service.Methods in org.opends.server.extensions with parameters of type AlertGenerator Modifier and Type Method Description void
JMXAlertHandler. sendAlertNotification(AlertGenerator generator, String alertType, LocalizableMessage alertMessage)
void
SMTPAlertHandler. sendAlertNotification(AlertGenerator generator, String alertType, LocalizableMessage alertMessage)
-
Uses of AlertGenerator in org.opends.server.plugins
Classes in org.opends.server.plugins that implement AlertGenerator Modifier and Type Class Description class
UniqueAttributePlugin
This class implements a Directory Server plugin that can be used to ensure that all values for a given attribute or set of attributes are unique within the server (or optionally, below a specified set of base DNs). -
Uses of AlertGenerator in org.opends.server.protocols
Classes in org.opends.server.protocols that implement AlertGenerator Modifier and Type Class Description class
LDIFConnectionHandler
This class defines an LDIF connection handler, which can be used to watch for new LDIF files to be placed in a specified directory. -
Uses of AlertGenerator in org.opends.server.protocols.http
Classes in org.opends.server.protocols.http that implement AlertGenerator Modifier and Type Class Description class
HTTPConnectionHandler
This class defines a connection handler that will be used for communicating with clients over HTTP. -
Uses of AlertGenerator in org.opends.server.protocols.ldap
Classes in org.opends.server.protocols.ldap that implement AlertGenerator Modifier and Type Class Description class
LDAPConnectionHandler
This class defines a connection handler that will be used for communicating with clients over LDAP. -
Uses of AlertGenerator in org.opends.server.replication.plugin
Classes in org.opends.server.replication.plugin that implement AlertGenerator Modifier and Type Class Description class
LDAPReplicationDomain
This class implements the bulk part of the Directory Server side of the replication code. -
Uses of AlertGenerator in org.opends.server.schema
Methods in org.opends.server.schema with parameters of type AlertGenerator Modifier and Type Method Description void
SchemaHandler. importEntry(Entry newSchemaEntry, AlertGenerator alertGenerator)
Imports the provided schema entry in the schema.void
SchemaHandler. updateSchemaAndSchemaFiles(Schema newSchema, Map<String,Attribute> newExtraAttributes, SortedSet<String> modifiedSchemaFileNames, AlertGenerator alertGenerator)
Replaces the schema with the provided schema and updates the provided set of schema files. -
Uses of AlertGenerator in org.opends.server.snmp
Classes in org.opends.server.snmp that implement AlertGenerator Modifier and Type Class Description class
SNMPConnectionHandler
This class defines an SNMP connection handler, which can be used to answer SNMP Requests on MIB 2605. -
Uses of AlertGenerator in org.opends.server.tools.dsbackup
Classes in org.opends.server.tools.dsbackup that implement AlertGenerator Modifier and Type Class Description class
BackupRunner
This class implements all the business logic for the dsbackup create sub-command, whether offline or online.
-