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

org.owasp.esapi.logging.appender.EventTypeLogSupplier Maven / Gradle / Ivy

/**
 * 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.appender;

// Uncomment and use once ESAPI supports Java 8 as the minimal baseline.
// import java.util.function.Supplier;

import org.owasp.esapi.Logger;
import org.owasp.esapi.Logger.EventType;

/**
 * Supplier implementation which returns a consistent String representation of
 * an EventType for logging
 *
 */
public class EventTypeLogSupplier // implements Supplier
{
    /** EventType reference to supply log representation of. */
    private final EventType eventType;

    /**
     * Ctr
     * 
     * @param evtyp EventType reference to supply log representation for
     */
    public EventTypeLogSupplier(EventType evtyp) {
        this.eventType = evtyp == null ? Logger.EVENT_UNSPECIFIED : evtyp;
    }

    // @Override    -- Uncomment when we switch to Java 8 as minimal baseline.
    public String get() {
        return eventType.toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy