org.owasp.esapi.logging.java.ESAPICustomJavaLevel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esapi Show documentation
Show all versions of esapi Show documentation
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.
/**
* 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.Level;
/**
* Definitions of customized Java Logging Level options to map ESAPI behavior to the desired Java Log output behaviors.
*/
public class ESAPICustomJavaLevel extends Level {
protected static final long serialVersionUID = 1L;
/**
* Defines a custom error level below SEVERE but above WARNING since this level isn't defined directly
* by java.util.Logger already.
*/
public static final Level ERROR_LEVEL = new ESAPICustomJavaLevel( "ERROR", Level.SEVERE.intValue() - 1);
/**
* Defines a custom level that should result in content always being recorded, unless the Java Logging configuration is set to OFF.
*/
public static final Level ALWAYS_LEVEL = new ESAPICustomJavaLevel( "ALWAYS", Level.OFF.intValue() - 1);
/**
* Constructs an instance of a JavaLoggerLevel which essentially provides a mapping between the name of
* the defined level and its numeric value.
*
* @param name The name of the JavaLoggerLevel
* @param value The associated numeric value
*/
private ESAPICustomJavaLevel(String name, int value) {
super(name, value);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy