|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ErrorLogCategory>
com.unboundid.ldap.sdk.unboundidds.logs.ErrorLogCategory
@ThreadSafety(level=COMPLETELY_THREADSAFE) public enum ErrorLogCategory
NOTE: This class is part of the Commercial Edition of the UnboundID LDAP SDK for Java. It is not available for use in applications that include only the Standard Edition of the LDAP SDK, and is not supported for use in conjunction with non-UnboundID products.This enum contains the set of error log categories defined in the Directory Server.
Enum Constant Summary | |
---|---|
ACCESS_CONTROL
The error log category used for messages related to access control. |
|
ADMIN
The error log category used for messages related to the server administration framework. |
|
ADMIN_TOOL
The error log category used for messages related to tools used for administering the server. |
|
BACKEND
The error log category used for messages generated by most types of Directory Server backends. |
|
CONFIG
The error log category used for messages related to the server configuration. |
|
CORE
The error log category used for messages related to the core processing of the server. |
|
DSCONFIG
The error log category used for messages related to the use of the dsconfig tool. |
|
EXTENSIONS
The error log category used for messages generated by server extensions. |
|
JEB
The error log category used for messages generated by the backend using the Berkeley DB Java Edition for storing data. |
|
LOG
The error log category used for messages generated by the logging framework. |
|
PLUGIN
The error log category used for messages generated by server plugins. |
|
PROTOCOL
The error log category used for messages about communication performed with clients. |
|
PROXY
The error log category used for messages about the operation of the Directory Proxy Server. |
|
QUICKSETUP
The error log category used for messages generated by the QuickSetup tool. |
|
REPLICATION
The error log category used for messages related to replication between server instances. |
|
RUNTIME_INFORMATION
The error log category used for messages related to information about the environment in which the server is running. |
|
SCHEMA
The error log category used for messages related to the server schema. |
|
TASK
The error log category used for messages related to processing performed by server tasks. |
|
THIRD_PARTY
The error log category used for messages generated by third-party components. |
|
TOOLS
The error log category used for messages generated by server tools. |
|
UTIL
The error log category used for messages generated by utility classes within the server. |
|
VERSION
The error log category used for messages about the server version. |
Method Summary | |
---|---|
static ErrorLogCategory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ErrorLogCategory[] |
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, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ErrorLogCategory ACCESS_CONTROL
public static final ErrorLogCategory ADMIN
public static final ErrorLogCategory ADMIN_TOOL
public static final ErrorLogCategory BACKEND
public static final ErrorLogCategory CONFIG
public static final ErrorLogCategory CORE
public static final ErrorLogCategory DSCONFIG
public static final ErrorLogCategory EXTENSIONS
public static final ErrorLogCategory JEB
public static final ErrorLogCategory LOG
public static final ErrorLogCategory PLUGIN
public static final ErrorLogCategory PROTOCOL
public static final ErrorLogCategory PROXY
public static final ErrorLogCategory QUICKSETUP
public static final ErrorLogCategory REPLICATION
public static final ErrorLogCategory RUNTIME_INFORMATION
public static final ErrorLogCategory SCHEMA
public static final ErrorLogCategory TASK
public static final ErrorLogCategory THIRD_PARTY
public static final ErrorLogCategory TOOLS
public static final ErrorLogCategory UTIL
public static final ErrorLogCategory VERSION
Method Detail |
---|
public static ErrorLogCategory[] values()
for (ErrorLogCategory c : ErrorLogCategory.values()) System.out.println(c);
public static ErrorLogCategory valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |