Class RestLogger

java.lang.Object
org.operaton.commons.logging.BaseLogger
org.operaton.bpm.engine.rest.impl.RestLogger
Direct Known Subclasses:
AuthLogger

public sealed class RestLogger extends BaseLogger permits AuthLogger
The `RestLogger` class is a specialized logger for the REST module of Operaton. It extends the BaseLogger class and serves as a base for other loggers in the REST module.

This class is sealed, meaning only the specified permitted subclasses can extend it. Currently, the only permitted subclass is AuthLogger.

  • Field Details

    • PROJECT_CODE

      public static final String PROJECT_CODE
      The project code used for logging purposes. This helps in identifying logs related to the "REST" project.
      See Also:
    • AUTH_LOGGER

      public static final AuthLogger AUTH_LOGGER
      A static instance of the `AuthLogger` class, used for logging authentication-related events. It is initialized with the project code, logger name, and a unique identifier.
  • Constructor Details

    • RestLogger

      public RestLogger()