All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.owasp.esapi.logging.java.JavaLogLevelHandler Maven / Gradle / Ivy

Go to download

The Enterprise Security API (ESAPI) project is an OWASP project to create simple strong security controls for every web platform. Security controls are not simple to build. You can read about the hundreds of pitfalls for unwary developers on the OWASP website. By providing developers with a set of strong controls, we aim to eliminate some of the complexity of creating secure web applications. This can result in significant cost savings across the SDLC.

There is a newer version: 2.5.5.0
Show newest version
/**
 * OWASP Enterprise Security API (ESAPI)
 * 
 * This file is part of the Open Web Application Security Project (OWASP)
 * Enterprise Security API (ESAPI) project. For details, please see
 * http://www.owasp.org/index.php/ESAPI.
 *
 * Copyright (c) 2007 - The OWASP Foundation
 * 
 * The ESAPI is published by OWASP under the BSD license. You should read and accept the
 * LICENSE before you use, modify, and/or redistribute this software.
 * 
 * @created 2019
 */
package org.owasp.esapi.logging.java;

import java.util.logging.Logger;

/**
 * Contract used to isolate translations for each Java Logging Level.
 * 
 * @see JavaLogLevelHandlers
 * @see JavaLogBridgeImpl
 *
 */
interface JavaLogLevelHandler {
    /** Check if the logging level is enabled for the specified logger.*/
    boolean isEnabled(Logger logger);
    /**
     * Calls the appropriate log level event on the specified logger.
     * @param logger Logger to invoke.
     * @param msg Message to log.
     */
    void log(Logger logger, String msg);
    /**
     * Calls the appropriate log level event on the specified logger.
     * @param logger Logger to invoke
     * @param msg Message to log
     * @param th Throwable to log.
     */
    void log(Logger logger, String msg, Throwable th);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy