org.eclipse.jetty.server.session
Class SessionHandler

java.lang.Object
  extended by org.eclipse.jetty.util.component.AbstractLifeCycle
      extended by org.eclipse.jetty.util.component.AggregateLifeCycle
          extended by org.eclipse.jetty.server.handler.AbstractHandler
              extended by org.eclipse.jetty.server.handler.AbstractHandlerContainer
                  extended by org.eclipse.jetty.server.handler.HandlerWrapper
                      extended by org.eclipse.jetty.server.handler.ScopedHandler
                          extended by org.eclipse.jetty.server.session.SessionHandler
All Implemented Interfaces:
Handler, HandlerContainer, Destroyable, Dumpable, LifeCycle

public class SessionHandler
extends ScopedHandler

SessionHandler.


Nested Class Summary
 
Nested classes/interfaces inherited from class org.eclipse.jetty.util.component.AbstractLifeCycle
AbstractLifeCycle.AbstractLifeCycleListener
 
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.component.LifeCycle
LifeCycle.Listener
 
Field Summary
static EnumSet<SessionTrackingMode> DEFAULT_TRACKING
           
 
Fields inherited from class org.eclipse.jetty.server.handler.ScopedHandler
_nextScope, _outerScope
 
Fields inherited from class org.eclipse.jetty.server.handler.HandlerWrapper
_handler
 
Fields inherited from class org.eclipse.jetty.util.component.AbstractLifeCycle
_listeners, FAILED, RUNNING, STARTED, STARTING, STOPPED, STOPPING
 
Constructor Summary
SessionHandler()
          Constructor.
SessionHandler(SessionManager manager)
           
 
Method Summary
 void addEventListener(EventListener listener)
           
protected  void checkRequestedSessionId(Request baseRequest, HttpServletRequest request)
          Look for a requested session ID in cookies and URI parameters
 void clearEventListeners()
           
 void doHandle(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
           
 void doScope(String target, Request baseRequest, HttpServletRequest request, HttpServletResponse response)
           
protected  void doStart()
          Start the managed lifecycle beans in the order they were added.
protected  void doStop()
          Stop the joined lifecycle beans in the reverse order they were added.
 SessionManager getSessionManager()
           
 void setServer(Server server)
           
 void setSessionManager(SessionManager sessionManager)
           
 
Methods inherited from class org.eclipse.jetty.server.handler.ScopedHandler
handle, never, nextHandle, nextScope
 
Methods inherited from class org.eclipse.jetty.server.handler.HandlerWrapper
destroy, expandChildren, getHandler, getHandlers, getNestedHandlerByClass, setHandler
 
Methods inherited from class org.eclipse.jetty.server.handler.AbstractHandlerContainer
dump, expandHandler, findContainerOf, getChildHandlerByClass, getChildHandlers, getChildHandlersByClass
 
Methods inherited from class org.eclipse.jetty.server.handler.AbstractHandler
dumpThis, getServer
 
Methods inherited from class org.eclipse.jetty.util.component.AggregateLifeCycle
addBean, addBean, contains, dump, dump, dump, dump, dumpStdErr, getBean, getBeans, getBeans, isManaged, manage, removeBean, removeBeans, unmanage
 
Methods inherited from class org.eclipse.jetty.util.component.AbstractLifeCycle
addLifeCycleListener, getState, getState, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, start, stop, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.eclipse.jetty.util.component.LifeCycle
addLifeCycleListener, isFailed, isRunning, isStarted, isStarting, isStopped, isStopping, removeLifeCycleListener, start, stop
 

Field Detail

DEFAULT_TRACKING

public static final EnumSet<SessionTrackingMode> DEFAULT_TRACKING
Constructor Detail

SessionHandler

public SessionHandler()
Constructor. Construct a SessionHandler witha a HashSessionManager with a standard java.util.Random generator is created.


SessionHandler

public SessionHandler(SessionManager manager)
Parameters:
manager - The session manager
Method Detail

getSessionManager

public SessionManager getSessionManager()
Returns:
Returns the sessionManager.

setSessionManager

public void setSessionManager(SessionManager sessionManager)
Parameters:
sessionManager - The sessionManager to set.

setServer

public void setServer(Server server)
Specified by:
setServer in interface Handler
Overrides:
setServer in class HandlerWrapper

doStart

protected void doStart()
                throws Exception
Description copied from class: AggregateLifeCycle
Start the managed lifecycle beans in the order they were added.

Overrides:
doStart in class ScopedHandler
Throws:
Exception
See Also:
HandlerWrapper.doStart()

doStop

protected void doStop()
               throws Exception
Description copied from class: AggregateLifeCycle
Stop the joined lifecycle beans in the reverse order they were added.

Overrides:
doStop in class HandlerWrapper
Throws:
Exception
See Also:
AbstractLifeCycle.doStart()

doScope

public void doScope(String target,
                    Request baseRequest,
                    HttpServletRequest request,
                    HttpServletResponse response)
             throws IOException,
                    ServletException
Specified by:
doScope in class ScopedHandler
Throws:
IOException
ServletException

doHandle

public void doHandle(String target,
                     Request baseRequest,
                     HttpServletRequest request,
                     HttpServletResponse response)
              throws IOException,
                     ServletException
Specified by:
doHandle in class ScopedHandler
Throws:
IOException
ServletException

checkRequestedSessionId

protected void checkRequestedSessionId(Request baseRequest,
                                       HttpServletRequest request)
Look for a requested session ID in cookies and URI parameters

Parameters:
baseRequest -
request -

addEventListener

public void addEventListener(EventListener listener)
Parameters:
listener -

clearEventListeners

public void clearEventListeners()


Copyright © 1995-2012 Mort Bay Consulting. All Rights Reserved.