Package mondrian.web.taglib
Class Listener
- java.lang.Object
-
- mondrian.web.taglib.Listener
-
- All Implemented Interfaces:
EventListener,ServletContextListener
public class Listener extends Object implements ServletContextListener
Listenercreates and destroys aApplResourcesat the appropriate times in the servlet's life-cycle.NOTE: This class must not depend upon any non-standard packages (such as
javax.transform) because it is loaded when Tomcat starts, not when the servlet is loaded. (This might be a bug in Tomcat 4.0.3, because it worked in 4.0.1. But anyway.)
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description (package private) static interfaceListener.ApplicationContext
-
Field Summary
Fields Modifier and Type Field Description (package private) Listener.ApplicationContextapplicationContext
-
Constructor Summary
Constructors Constructor Description Listener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcontextDestroyed(ServletContextEvent event)voidcontextInitialized(ServletContextEvent event)
-
-
-
Field Detail
-
applicationContext
Listener.ApplicationContext applicationContext
-
-
Method Detail
-
contextInitialized
public void contextInitialized(ServletContextEvent event)
- Specified by:
contextInitializedin interfaceServletContextListener
-
contextDestroyed
public void contextDestroyed(ServletContextEvent event)
- Specified by:
contextDestroyedin interfaceServletContextListener
-
-