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

org.owasp.esapi.logging.slf4j.Slf4JLogBridge 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.

The 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 2018
 */
package org.owasp.esapi.logging.slf4j;

import org.owasp.esapi.Logger.EventType;
import org.slf4j.Logger;
/**
 * Contract for translating an ESAPI log event into an SLF4J log event.
 *
 */
public interface Slf4JLogBridge {
    /**
     * Translation for the provided ESAPI level, type, and message to the specified SLF4J Logger.
     * @param logger Logger to receive the translated message.
     * @param esapiLevel ESAPI level of event.
     * @param type ESAPI event type
     * @param message ESAPI event message content.
     */
    void log(Logger logger, int esapiLevel, EventType type, String message) ;
    /**
     * Translation for the provided ESAPI level, type, message, and Throwable to the specified SLF4J Logger.
     * @param logger Logger to receive the translated message.
     * @param esapiLevel ESAPI level of event.
     * @param type ESAPI event type
     * @param message ESAPI event message content.
     * @param throwable ESAPI event Throwable content
     */
    void log(Logger logger, int esapiLevel, EventType type, String message, Throwable throwable) ;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy