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

org.tinygroup.weblayer.webcontext.session.SessionManager Maven / Gradle / Ivy

The newest version!
package org.tinygroup.weblayer.webcontext.session;


/**
 * session信息管理接口
 * @author renhui
 *
 */
public interface SessionManager {
	
	void addSession(Session session);
	
	void expireSession(Session session);
	
	Session[] queryAllSessions();
	
	Session querySessionById(String sessionId);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy