org.opends.server.admin.std.meta
Enum ErrorLogPublisherCfgDefn.DefaultSeverity

java.lang.Object
  extended by java.lang.Enum<ErrorLogPublisherCfgDefn.DefaultSeverity>
      extended by org.opends.server.admin.std.meta.ErrorLogPublisherCfgDefn.DefaultSeverity
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ErrorLogPublisherCfgDefn.DefaultSeverity>
Enclosing class:
ErrorLogPublisherCfgDefn

public static enum ErrorLogPublisherCfgDefn.DefaultSeverity
extends java.lang.Enum<ErrorLogPublisherCfgDefn.DefaultSeverity>

Defines the set of permissable values for the "default-severity" property.

Specifies the default severity levels for the logger.


Enum Constant Summary
ALL
          Messages of all severity levels are logged.
DEBUG
          The error log severity that is used for messages that provide debugging information triggered during processing.
FATAL_ERROR
          The error log severity that is used for messages that provide information about fatal errors which may force the server to shut down or operate in a significantly degraded state.
INFO
          The error log severity that is used for messages that provide information about significant events within the server that are not warnings or errors.
MILD_ERROR
          The error log severity that is used for messages that provide information about mild (recoverable) errors encountered during processing.
MILD_WARNING
          The error log severity that is used for messages that provide information about mild warnings triggered during processing.
NONE
          No messages of any severity are logged by default.
NOTICE
          The error log severity that is used for the most important informational messages (i.e., information that should almost always be logged but is not associated with a warning or error condition).
SEVERE_ERROR
          The error log severity that is used for messages that provide information about severe errors encountered during processing.
SEVERE_WARNING
          The error log severity that is used for messages that provide information about severe warnings triggered during processing.
 
Method Summary
 java.lang.String toString()
          
static ErrorLogPublisherCfgDefn.DefaultSeverity valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ErrorLogPublisherCfgDefn.DefaultSeverity[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ALL

public static final ErrorLogPublisherCfgDefn.DefaultSeverity ALL
Messages of all severity levels are logged.


DEBUG

public static final ErrorLogPublisherCfgDefn.DefaultSeverity DEBUG
The error log severity that is used for messages that provide debugging information triggered during processing.


FATAL_ERROR

public static final ErrorLogPublisherCfgDefn.DefaultSeverity FATAL_ERROR
The error log severity that is used for messages that provide information about fatal errors which may force the server to shut down or operate in a significantly degraded state.


INFO

public static final ErrorLogPublisherCfgDefn.DefaultSeverity INFO
The error log severity that is used for messages that provide information about significant events within the server that are not warnings or errors.


MILD_ERROR

public static final ErrorLogPublisherCfgDefn.DefaultSeverity MILD_ERROR
The error log severity that is used for messages that provide information about mild (recoverable) errors encountered during processing.


MILD_WARNING

public static final ErrorLogPublisherCfgDefn.DefaultSeverity MILD_WARNING
The error log severity that is used for messages that provide information about mild warnings triggered during processing.


NONE

public static final ErrorLogPublisherCfgDefn.DefaultSeverity NONE
No messages of any severity are logged by default. This value is intended to be used in conjunction with the override-severity property to define an error logger that will publish no error message beside the errors of a given category.


NOTICE

public static final ErrorLogPublisherCfgDefn.DefaultSeverity NOTICE
The error log severity that is used for the most important informational messages (i.e., information that should almost always be logged but is not associated with a warning or error condition).


SEVERE_ERROR

public static final ErrorLogPublisherCfgDefn.DefaultSeverity SEVERE_ERROR
The error log severity that is used for messages that provide information about severe errors encountered during processing.


SEVERE_WARNING

public static final ErrorLogPublisherCfgDefn.DefaultSeverity SEVERE_WARNING
The error log severity that is used for messages that provide information about severe warnings triggered during processing.

Method Detail

values

public static ErrorLogPublisherCfgDefn.DefaultSeverity[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (ErrorLogPublisherCfgDefn.DefaultSeverity c : ErrorLogPublisherCfgDefn.DefaultSeverity.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ErrorLogPublisherCfgDefn.DefaultSeverity valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

toString

public java.lang.String toString()

Overrides:
toString in class java.lang.Enum<ErrorLogPublisherCfgDefn.DefaultSeverity>