
com.identityblitz.scs.LoggingUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scs-lib Show documentation
Show all versions of scs-lib Show documentation
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