Enum LogCategory

    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      ACCESS_CONTROL
      The category used for messages associated with Access Control.
      ADMIN
      The category used for messages associated with the administration framework.
      ADMIN_TOOL
      The category used for messages associated with the tool like the offline installer and uninstaller.
      BACKEND
      The category used for messages associated with generic backends.
      CONFIG
      The category that will be used for messages associated with configuration handling.
      CORE
      The category that will be used for messages associated with the core server.
      DSCONFIG
      The category used for messages associated with the dsconfig administration tool.
      EXTENSIONS
      The category that will be used for messages associated with server extensions (e.g., extended operations, SASL mechanisms, password storage schemes, password validators, etc.).
      JEB
      The category used for messages associated with the JE backend.
      LOG
      The category that will be used for messages associated with the server loggers.
      PLUGIN
      The category that will be used for messages associated with plugin processing.
      PROTOCOL
      The category that will be used for messages associated with connection and protocol handling (e.g., ASN.1 and LDAP).
      PROXY
      The category that will be used for messages associated with Directory Proxy Server functionality.
      REPLICATION
      The category used for messages associated with replication.
      RUNTIME_INFORMATION
      The category used for messages associated with the runtime information.
      SCHEMA
      The category that will be used for messages associated with the server schema elements.
      SETUP
      The category used for messages associated with the setup tools.
      SYNC
      The category that will be used for messages associated with Data Sync Server functionality.
      TASK
      The category used for messages associated with tasks.
      THIRD_PARTY
      The category that will be used for messages associated with third-party (including user-defined) modules.
      TOOLS
      The category used for messages associated with tools.
      UPDATE
      The category that will be used for messages associated with the updater tool.
      USER_DEFINED
      The category that will be used for messages associated with user-defined modules.
      UTIL
      The category that will be used for messages associated with the general server utilities.
      VERSION
      The category used for messages associated with version information.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static LogCategory valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static LogCategory[] 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

      • ACCESS_CONTROL

        public static final LogCategory ACCESS_CONTROL
        The category used for messages associated with Access Control.
      • ADMIN

        public static final LogCategory ADMIN
        The category used for messages associated with the administration framework.
      • ADMIN_TOOL

        public static final LogCategory ADMIN_TOOL
        The category used for messages associated with the tool like the offline installer and uninstaller.
      • BACKEND

        public static final LogCategory BACKEND
        The category used for messages associated with generic backends.
      • CONFIG

        public static final LogCategory CONFIG
        The category that will be used for messages associated with configuration handling.
      • CORE

        public static final LogCategory CORE
        The category that will be used for messages associated with the core server.
      • DSCONFIG

        public static final LogCategory DSCONFIG
        The category used for messages associated with the dsconfig administration tool.
      • EXTENSIONS

        public static final LogCategory EXTENSIONS
        The category that will be used for messages associated with server extensions (e.g., extended operations, SASL mechanisms, password storage schemes, password validators, etc.).
      • JEB

        public static final LogCategory JEB
        The category used for messages associated with the JE backend.
      • LOG

        public static final LogCategory LOG
        The category that will be used for messages associated with the server loggers.
      • PLUGIN

        public static final LogCategory PLUGIN
        The category that will be used for messages associated with plugin processing.
      • PROTOCOL

        public static final LogCategory PROTOCOL
        The category that will be used for messages associated with connection and protocol handling (e.g., ASN.1 and LDAP).
      • PROXY

        public static final LogCategory PROXY
        The category that will be used for messages associated with Directory Proxy Server functionality.
      • REPLICATION

        public static final LogCategory REPLICATION
        The category used for messages associated with replication.
      • SCHEMA

        public static final LogCategory SCHEMA
        The category that will be used for messages associated with the server schema elements.
      • SETUP

        public static final LogCategory SETUP
        The category used for messages associated with the setup tools.
      • SYNC

        public static final LogCategory SYNC
        The category that will be used for messages associated with Data Sync Server functionality.
      • TASK

        public static final LogCategory TASK
        The category used for messages associated with tasks.
      • THIRD_PARTY

        public static final LogCategory THIRD_PARTY
        The category that will be used for messages associated with third-party (including user-defined) modules.
      • TOOLS

        public static final LogCategory TOOLS
        The category used for messages associated with tools.
      • UPDATE

        public static final LogCategory UPDATE
        The category that will be used for messages associated with the updater tool.
      • USER_DEFINED

        public static final LogCategory USER_DEFINED
        The category that will be used for messages associated with user-defined modules.
      • UTIL

        public static final LogCategory UTIL
        The category that will be used for messages associated with the general server utilities.
      • VERSION

        public static final LogCategory VERSION
        The category used for messages associated with version information.
    • Method Detail

      • values

        public static LogCategory[] 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 (LogCategory c : LogCategory.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static LogCategory 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