
com.identityblitz.scs.ConfigParameter 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;
public enum ConfigParameter {
SCS_COOKIE_NAME("com.identityblitz.scs.cookieName"),
DOMAIN ("com.identityblitz.scs.cookieDomain"),
IS_SECURE("com.identityblitz.scs.cookieIsSecure"),
PATH("com.identityblitz.scs.cookiePath"),
PLATFORM("com.identityblitz.scs.Platform"),
USE_COMPRESSION("com.identityblitz.scs.useCompression"),
SESSION_MAX_AGE("com.identityblitz.scs.sessionMaxAgeInSec"),
ENCODE_KEY("com.identityblitz.scs.crypto.encodingKey"),
HMAC_KEY("com.identityblitz.scs.crypto.hmacKey");
private String key;
private ConfigParameter(final String key) {
this.key = key;
}
public String key() {
return key;
}
}