org.eclipse.jetty.servlet.listener
Class IntrospectorCleaner

java.lang.Object
  extended by org.eclipse.jetty.servlet.listener.IntrospectorCleaner
All Implemented Interfaces:
EventListener, ServletContextListener

public class IntrospectorCleaner
extends Object
implements ServletContextListener

IntrospectorCleaner Cleans a static cache of Methods held by java.beans.Introspector class when a context is undeployed.

See Also:
Introspector

Constructor Summary
IntrospectorCleaner()
           
 
Method Summary
 void contextDestroyed(ServletContextEvent sce)
          Notification that the servlet context is about to be shut down.
 void contextInitialized(ServletContextEvent sce)
          Notification that the web application initialization process is starting.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IntrospectorCleaner

public IntrospectorCleaner()
Method Detail

contextInitialized

public void contextInitialized(ServletContextEvent sce)
Description copied from interface: 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: 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 © 1995-2011 Mort Bay Consulting. All Rights Reserved.