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

com.identityblitz.scs.LoggingUtils Maven / Gradle / Ivy

Go to download

The Java implementation of Secure Cookie Session (SCS). The implementation conforms RFC 6896 (https://tools.ietf.org/html/rfc6896).

The newest version!
package com.identityblitz.scs;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public enum LoggingUtils {
    INSTANCE;

    private final Logger logger;

    private LoggingUtils() {
        logger = LoggerFactory.getLogger("com.identityblitz.scs");
    }

    public static Logger getLogger() {
        return INSTANCE.logger;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy