Uses of Class
org.opends.messages.Severity
-
Packages that use Severity Package Description org.opends.messages Defines all the messages that may be used in the Directory Server and tools.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.org.opends.server.loggers Contains implementations of Directory Server access, error, and debug loggers. -
-
Uses of Severity in org.opends.messages
Fields in org.opends.messages with type parameters of type Severity Modifier and Type Field Description static List<Severity>
Severity. VALUES
All the enum values (defined to avoid callingSeverity.values()
which allocate an array each time.Methods in org.opends.messages that return Severity Modifier and Type Method Description static Severity
Severity. parseString(String s)
Returns theSeverity
associated with the input strings
which can either be a severity's name or messageDescriptorForm.static Severity
Severity. valueOf(String name)
Returns the enum constant of this type with the specified name.static Severity[]
Severity. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of Severity in org.opends.server.backends.task
Methods in org.opends.server.backends.task with parameters of type Severity Modifier and Type Method Description void
Task. addLogMessage(String category, Severity severity, LocalizableMessage message)
Adds a log message to the set of messages logged by this task. -
Uses of Severity in org.opends.server.core
Methods in org.opends.server.core with parameters of type Severity Modifier and Type Method Description void
DirectoryServer. sendAlertNotification(AlertGenerator generator, Severity severity, String alertType, LocalizableMessage alertMessage)
void
ServerContext. sendAlertNotification(AlertGenerator generator, Severity severity, String alertType, LocalizableMessage alertMessage)
Sends an alert notification with the provided information. -
Uses of Severity in org.opends.server.loggers
Methods in org.opends.server.loggers with parameters of type Severity Modifier and Type Method Description static boolean
ErrorLogger. isEnabledFor(long categoryMask, Severity severity)
Check if logging is enabled for the provided category and severity.static void
ErrorLogger. log(String category, long categoryMask, Severity severity, LocalizableMessage message)
Writes a message to the error log using the provided information.abstract void
ErrorLogPublisher. log(String category, long categoryMask, Severity severity, LocalizableMessage message)
Writes a message to the error log using the provided information.
-