![JAR search and dependency download from the Maven repository](/logo.png)
com.github.jeckep.spark.Persister Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sparkjava-redis-session-manager Show documentation
Show all versions of sparkjava-redis-session-manager Show documentation
Classes to store sparkjava session attributes in redis
package com.github.jeckep.spark;
import java.io.Serializable;
import java.util.Map;
public interface Persister {
void save(String sessionCookie, Map sessionAttrs, int expire);
Map restore(String sessionCookie, int expire);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy