org.apache.tomcat.websocket.server
Class WsContextListener
java.lang.Object
org.apache.tomcat.websocket.server.WsContextListener
- All Implemented Interfaces:
- EventListener, ServletContextListener
public class WsContextListener
- extends Object
- implements ServletContextListener
In normal usage, this ServletContextListener
does not need to be
explicitly configured as the WsSci
performs all the necessary
bootstrap and installs this listener in the ServletContext
. If the
WsSci
is disabled, this listener must be added manually to every
ServletContext
that uses WebSocket to bootstrap the
WsServerContainer
correctly.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
WsContextListener
public WsContextListener()
contextInitialized
public void contextInitialized(ServletContextEvent sce)
- Description copied from interface:
javax.servlet.ServletContextListener
- Notification that the web application initialization process is starting.
All ServletContextListeners are notified of context initialization before
any filter or servlet in the web application is initialized.
- Specified by:
contextInitialized
in interface ServletContextListener
contextDestroyed
public void contextDestroyed(ServletContextEvent sce)
- Description copied from interface:
javax.servlet.ServletContextListener
- Notification that the servlet context is about to be shut down. All
servlets and filters have been destroy()ed before any
ServletContextListeners are notified of context destruction.
- Specified by:
contextDestroyed
in interface ServletContextListener
Copyright © 2000-2014 Apache Software Foundation. All Rights Reserved.