All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vtence.molecule.session.SessionStore Maven / Gradle / Ivy

There is a newer version: 0.15.0
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy