Class ContextDetachingSCL
- java.lang.Object
 - 
- ch.qos.logback.classic.selector.servlet.ContextDetachingSCL
 
 
- 
- All Implemented Interfaces:
 java.util.EventListener,ServletContextListener
@Deprecated(since="2022-01-27") public class ContextDetachingSCL extends java.lang.Object implements ServletContextListener
Deprecated. 
- 
- 
Constructor Summary
Constructors Constructor Description ContextDetachingSCL()Deprecated. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidcontextDestroyed(ServletContextEvent servletContextEvent)Deprecated.Notification that the servlet context is about to be shut down.voidcontextInitialized(ServletContextEvent arg0)Deprecated.Notification that the web application initialization process is starting. 
 - 
 
- 
- 
Method Detail
- 
contextInitialized
public void contextInitialized(ServletContextEvent arg0)
Deprecated.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)
Deprecated.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
 
 - 
 
 -