org.apache.catalina.util
public final class InstanceSupport extends Object
Version: $Id: InstanceSupport.java 771009 2009-05-03 01:15:41Z markt $
Constructor Summary | |
---|---|
InstanceSupport(Wrapper wrapper)
Construct a new InstanceSupport object associated with the specified
Instance component.
|
Method Summary | |
---|---|
void | addInstanceListener(InstanceListener listener)
Add a lifecycle event listener to this component.
|
void | fireInstanceEvent(String type, Filter filter)
Notify all lifecycle event listeners that a particular event has
occurred for this Container. |
void | fireInstanceEvent(String type, Filter filter, Throwable exception)
Notify all lifecycle event listeners that a particular event has
occurred for this Container. |
void | fireInstanceEvent(String type, Filter filter, ServletRequest request, ServletResponse response)
Notify all lifecycle event listeners that a particular event has
occurred for this Container. |
void | fireInstanceEvent(String type, Filter filter, ServletRequest request, ServletResponse response, Throwable exception)
Notify all lifecycle event listeners that a particular event has
occurred for this Container. |
void | fireInstanceEvent(String type, Servlet servlet)
Notify all lifecycle event listeners that a particular event has
occurred for this Container. |
void | fireInstanceEvent(String type, Servlet servlet, Throwable exception)
Notify all lifecycle event listeners that a particular event has
occurred for this Container. |
void | fireInstanceEvent(String type, Servlet servlet, ServletRequest request, ServletResponse response)
Notify all lifecycle event listeners that a particular event has
occurred for this Container. |
void | fireInstanceEvent(String type, Servlet servlet, ServletRequest request, ServletResponse response, Throwable exception)
Notify all lifecycle event listeners that a particular event has
occurred for this Container. |
Wrapper | getWrapper()
Return the Wrapper with which we are associated. |
void | removeInstanceListener(InstanceListener listener)
Remove a lifecycle event listener from this component.
|
Parameters: wrapper The component that will be the source of events that we fire
Parameters: listener The listener to add
Parameters: type Event type filter The relevant Filter for this event
Parameters: type Event type filter The relevant Filter for this event exception Exception that occurred
Parameters: type Event type filter The relevant Filter for this event request The servlet request we are processing response The servlet response we are processing
Parameters: type Event type filter The relevant Filter for this event request The servlet request we are processing response The servlet response we are processing exception Exception that occurred
Parameters: type Event type servlet The relevant Servlet for this event
Parameters: type Event type servlet The relevant Servlet for this event exception Exception that occurred
Parameters: type Event type servlet The relevant Servlet for this event request The servlet request we are processing response The servlet response we are processing
Parameters: type Event type servlet The relevant Servlet for this event request The servlet request we are processing response The servlet response we are processing exception Exception that occurred
Parameters: listener The listener to remove