Class ContextDetachingSCL
- java.lang.Object
-
- ch.qos.logback.classic.selector.servlet.ContextDetachingSCL
-
- All Implemented Interfaces:
EventListener,ServletContextListener
public class ContextDetachingSCL extends Object implements ServletContextListener
-
-
Constructor Summary
Constructors Constructor Description ContextDetachingSCL()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcontextDestroyed(ServletContextEvent servletContextEvent)Notification that the servlet context is about to be shut down.voidcontextInitialized(ServletContextEvent arg0)Notification that the web application initialization process is starting.
-
-
-
Method Detail
-
contextInitialized
public void contextInitialized(ServletContextEvent arg0)
Description copied from interface:ServletContextListenerNotification 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:
contextInitializedin interfaceServletContextListener- Parameters:
arg0- Information about the ServletContext that was initialized
-
contextDestroyed
public void contextDestroyed(ServletContextEvent servletContextEvent)
Description copied from interface:ServletContextListenerNotification 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:
contextDestroyedin interfaceServletContextListener- Parameters:
servletContextEvent- Information about the ServletContext that was destroyed
-
-