List of usage examples for javax.servlet.http HttpSession interface-usage
From source file com.zz.globalsession.GlobalHttpSession.java
@SuppressWarnings("deprecation") public class GlobalHttpSession implements HttpSession { public static class Metadata implements Serializable { private Boolean invalidated;
From source file org.debux.webmotion.server.call.ClientSession.java
/**
* Manages a client session with the cookies. Thus you can easily scale your server.
* The class uses @see CookieManager to store secure data on client. The data is
* serialized to json object, to get the value use getAttribute(s) method with
* class as parameter. Currently the session is limited by cookie limitation,
* the session can't exceeded 4ko.
From source file org.sakaiproject.tool.impl.MyLittleSession.java
/********************************************************************************************************************************************************************************************************************************************************** * Entity: ToolSession, ContextSession (and even HttpSession) *********************************************************************************************************************************************************************************************************************************************************/ public class MyLittleSession implements ToolSession, ContextSession, HttpSession, Serializable { public static final String TYPE_TOOL = "tool";
From source file org.siphon.jssp.JsspSession.java
public class JsspSession implements HttpSession, Map<String, Object> { final HttpSession session; public JsspSession(HttpSession session) { this.session = session;
From source file de.micromata.genome.test.web.SimHttpSession.java
/**
* Simulation of a HttpSession.
*
* @author Roger Rene Kommer (r.kommer@micromata.de)
*
*/
From source file de.micromata.genome.gwiki.web.StandaloneHttpSession.java
/**
* Simulation of a HttpSession.
*
* @author Roger Rene Kommer (r.kommer@micromata.de)
*
*/
From source file org.sakaiproject.tool.impl.MySession.java
/************************************************************************************************************************************************* * Entity: Session Also is an HttpSession ************************************************************************************************************************************************/ public class MySession implements Session, HttpSession, Serializable { /**
From source file org.ireland.jnetty.server.session.HttpSessionImpl.java
/** * Implements a HTTP session. */ public class HttpSessionImpl implements HttpSession { private static final Log log = LogFactory.getLog(HttpSessionImpl.class.getName());
From source file org.apache.catalina.cluster.session.DeltaSession.java
/**
*
* Similar to the StandardSession, this code is identical, but for update
* and some small issues, simply copied in the first release.
* This session will keep track of deltas during a request.
* <p>