com.vtence.molecule.session.SessionStore Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of molecule Show documentation
Show all versions of molecule Show documentation
A web micro-framework for Java
package com.vtence.molecule.session;
import com.vtence.molecule.Session;
public interface SessionStore {
Session load(String id);
String save(Session session);
void destroy(String sid);
}