Example usage for javax.servlet.http HttpSession interface-usage

List of usage examples for javax.servlet.http HttpSession interface-usage

Introduction

In this page you can find the example usage for javax.servlet.http HttpSession interface-usage.

Usage

From source file stubs.javax.servlet.http.HttpSessionStub.java

/**
 * A simple stand-in for the HttpSession, for use in unit tests.
 */
public class HttpSessionStub implements HttpSession {
    private static final Log log = LogFactory.getLog(HttpSessionStub.class);

From source file org.force66.mock.servletapi.MockSession.java

/**
 * Mock implementation for javax.servlet.http.HttpSession
 * @author D. Ashmore
 *
 */
public class MockSession implements HttpSession {

From source file io.wcm.testing.mock.sling.servlet.MockHttpSession.java

/**
 * Mock {@link HttpSession} implementation.
 */
public class MockHttpSession implements HttpSession {

    private final ServletContext servletContext = new MockServletContext();

From source file FakeHttpSession.java

/**
 * For the benefit of anyone that wants to create a fake HttpSession
 * that doesn't do anything other than not be null.
 * @author Joe Walker [joe at getahead dot ltd dot uk]
 */
public class FakeHttpSession implements HttpSession {

From source file org.codehaus.wadi.web.impl.WebSessionWrapper.java

/**
 * Wraps a Session instance, presenting ONLY an HttpSession facade to the application.
 *
 * @author <a href="mailto:jules@coredevelopers.net">Jules Gosnell</a>
 * @version $Revision: 1893 $
 */

From source file org.jboss.dashboard.workspace.PanelSession.java

/**
 * Stores and controls the session status for a given panel instance for each session.
 */
public class PanelSession implements HttpSession {

    /**

From source file org.apache.sling.servlethelpers.MockHttpSession.java

/**
 * Mock {@link HttpSession} implementation.
 */
@ConsumerType
public class MockHttpSession implements HttpSession {

From source file org.springframework.session.web.http.HttpSessionAdapter.java

/**
 * Adapts Spring Session's {@link Session} to an {@link HttpSession}.
 *
 * @param <S> the {@link Session} type
 * @author Rob Winch
 * @author Vedran Pavic

From source file org.apache.click.servlet.MockSession.java

/**
 * Mock implementation of {@link javax.servlet.http.HttpSession}.
 * <p/>
 * Implements all of the methods from the standard HttpSession class plus
 * helper methods to aid setting up a session.
 */

From source file com.taobao.ad.easyschedule.exsession.request.session.BiddingSession.java

@SuppressWarnings({ "rawtypes", "unchecked", "deprecation" })
public class BiddingSession implements HttpSession {

    private static Logger log = Logger.getLogger(BiddingSession.class);
    /** SESSION */
    private String sessionId = null;