fatjar.dto.SessionKeys Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of FatJar Show documentation
Show all versions of FatJar Show documentation
FatJar simple API to quick prototyping and portable web services
The newest version!
package fatjar.dto;
public enum SessionKeys {
COOKIE_CONTENT("COOKIE_CONTENT"),
COOKIE_SIGN_KEY("COOKIE_SIGN_KEY"),
COOKIE_ENCRYPTED("COOKIE_ENCRYPTED"),
COOKIE("Cookie");
private final String value;
SessionKeys(String value) {
this.value = value;
}
public String getValue() {
return value;
}
}