org.mortbay.jetty.servlet
Class SessionHandler

java.lang.Object
  extended by org.mortbay.component.AbstractLifeCycle
      extended by org.mortbay.jetty.handler.AbstractHandler
          extended by org.mortbay.jetty.handler.WrappedHandler
              extended by org.mortbay.jetty.servlet.SessionHandler
All Implemented Interfaces:
LifeCycle, Handler

public class SessionHandler
extends WrappedHandler

SessionHandler.

Author:
gregw

Field Summary
(package private)  SessionManager _sessionManager
           
 
Fields inherited from class org.mortbay.jetty.handler.AbstractHandler
_string
 
Fields inherited from interface org.mortbay.jetty.Handler
ALL, DEFAULT, ERROR, FORWARD, INCLUDE, REQUEST
 
Constructor Summary
SessionHandler()
          Constructor.
SessionHandler(SessionManager manager)
           
 
Method Summary
 void addEventListener(EventListener listener)
           
 void clearEventListeners()
           
protected  void doStart()
           
protected  void doStop()
           
 SessionManager getSessionManager()
           
 boolean handle(String target, HttpServletRequest request, HttpServletResponse response, int dispatch)
          Generic Jetty request handler.
 void setSessionManager(SessionManager sessionManager)
           
 
Methods inherited from class org.mortbay.jetty.handler.WrappedHandler
getHandler, setHandler, setServer
 
Methods inherited from class org.mortbay.jetty.handler.AbstractHandler
getServer, toString
 
Methods inherited from class org.mortbay.component.AbstractLifeCycle
isFailed, isRunning, isStarted, isStarting, isStopping, start, stop
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface org.mortbay.component.LifeCycle
isFailed, isRunning, isStarted, isStarting, isStopping, start, stop
 

Field Detail

_sessionManager

SessionManager _sessionManager
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.

doStart

protected void doStart()
                throws Exception
Overrides:
doStart in class WrappedHandler
Throws:
Exception

doStop

protected void doStop()
               throws Exception
Overrides:
doStop in class WrappedHandler
Throws:
Exception

handle

public boolean handle(String target,
                      HttpServletRequest request,
                      HttpServletResponse response,
                      int dispatch)
               throws IOException,
                      ServletException
Description copied from interface: Handler
Generic Jetty request handler.

Specified by:
handle in interface Handler
Overrides:
handle in class WrappedHandler
Parameters:
target - The target of the request - either a URI or a name.
request - The request either as the Request object or a wrapper of that request. The HttpConnection.getCurrentConnection() method can be used access the Request object if required.
response - The response as the Response object or a wrapper of that request. The HttpConnection.getCurrentConnection() method can be used access the Response object if required.
dispatch - The dispatch mode: Handler.REQUEST, Handler.FORWARD, Handler.INCLUDE, Handler.ERROR
Returns:
True if the request has been handled
Throws:
IOException
ServletException

addEventListener

public void addEventListener(EventListener listener)
Parameters:
listener -

clearEventListeners

public void clearEventListeners()