Uses of Interface
org.opends.server.api.AlertHandler
-
Packages that use AlertHandler Package Description 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. -
-
Uses of AlertHandler in org.opends.server.core
Methods in org.opends.server.core that return types with arguments of type AlertHandler Modifier and Type Method Description List<AlertHandler<?>>
DirectoryServer. getAlertHandlers()
List<AlertHandler<?>>
ServerContext. getAlertHandlers()
Retrieves the set of alert handlers that have been registered with the Directory Server.Methods in org.opends.server.core with parameters of type AlertHandler Modifier and Type Method Description void
DirectoryServer. deregisterAlertHandler(AlertHandler<?> alertHandler)
void
ServerContext. deregisterAlertHandler(AlertHandler<?> alertHandler)
Deregisters the provided alert handler with the Directory Server.void
DirectoryServer. registerAlertHandler(AlertHandler<?> alertHandler)
void
ServerContext. registerAlertHandler(AlertHandler<?> alertHandler)
Registers the provided alert handler with the Directory Server. -
Uses of AlertHandler in org.opends.server.extensions
Classes in org.opends.server.extensions that implement AlertHandler Modifier and Type Class Description class
JMXAlertHandler
This class provides an implementation of a Directory Server alert handler that will send alerts using JMX notifications.class
SMTPAlertHandler
This class implements a Directory Server alert handler that may be used to send administrative alerts via SMTP.
-