|
InstanceEvent (Catalina Internal API Documentation)
org.apache.catalina
|
Field Summary | |
static java.lang.String |
AFTER_DESTROY_EVENT
The event indicating that the destroy() method has
returned. |
static java.lang.String |
AFTER_DISPATCH_EVENT
The event indicating that the service() method of a
servlet accessed via a request dispatcher has returned. |
static java.lang.String |
AFTER_FILTER_EVENT
The event indicating that the doFilter() method of a
Filter has returned. |
static java.lang.String |
AFTER_INIT_EVENT
The event indicating that the init() method has returned. |
static java.lang.String |
AFTER_SERVICE_EVENT
The event indicating that the service() method has
returned. |
static java.lang.String |
BEFORE_DESTROY_EVENT
The event indicating that the destroy method is about
to be called for this instance. |
static java.lang.String |
BEFORE_DISPATCH_EVENT
The event indicating that the service() method of a
servlet accessed via a request dispatcher is about to be called.
|
static java.lang.String |
BEFORE_FILTER_EVENT
The event indicating that the doFilter() method of a
Filter is about to be called. |
static java.lang.String |
BEFORE_INIT_EVENT
The event indicating that the init() method is about
to be called for this instance. |
static java.lang.String |
BEFORE_SERVICE_EVENT
The event indicating that the service() method is about
to be called on a servlet. |
Fields inherited from class java.util.EventObject |
source |
Constructor Summary | |
InstanceEvent(Wrapper wrapper,
javax.servlet.Filter filter,
java.lang.String type)
Construct a new InstanceEvent with the specified parameters. |
|
InstanceEvent(Wrapper wrapper,
javax.servlet.Filter filter,
java.lang.String type,
javax.servlet.ServletRequest request,
javax.servlet.ServletResponse response)
Construct a new InstanceEvent with the specified parameters. |
|
InstanceEvent(Wrapper wrapper,
javax.servlet.Filter filter,
java.lang.String type,
javax.servlet.ServletRequest request,
javax.servlet.ServletResponse response,
java.lang.Throwable exception)
Construct a new InstanceEvent with the specified parameters. |
|
InstanceEvent(Wrapper wrapper,
javax.servlet.Filter filter,
java.lang.String type,
java.lang.Throwable exception)
Construct a new InstanceEvent with the specified parameters. |
|
InstanceEvent(Wrapper wrapper,
javax.servlet.Servlet servlet,
java.lang.String type)
Construct a new InstanceEvent with the specified parameters. |
|
InstanceEvent(Wrapper wrapper,
javax.servlet.Servlet servlet,
java.lang.String type,
javax.servlet.ServletRequest request,
javax.servlet.ServletResponse response)
Construct a new InstanceEvent with the specified parameters. |
|
InstanceEvent(Wrapper wrapper,
javax.servlet.Servlet servlet,
java.lang.String type,
javax.servlet.ServletRequest request,
javax.servlet.ServletResponse response,
java.lang.Throwable exception)
Construct a new InstanceEvent with the specified parameters. |
|
InstanceEvent(Wrapper wrapper,
javax.servlet.Servlet servlet,
java.lang.String type,
java.lang.Throwable exception)
Construct a new InstanceEvent with the specified parameters. |
Method Summary | |
java.lang.Throwable |
getException()
Return the exception that occurred during the processing that was reported by this event. |
javax.servlet.Filter |
getFilter()
Return the filter instance for which this event occurred. |
javax.servlet.ServletRequest |
getRequest()
Return the servlet request for which this event occurred. |
javax.servlet.ServletResponse |
getResponse()
Return the servlet response for which this event occurred. |
javax.servlet.Servlet |
getServlet()
Return the servlet instance for which this event occurred. |
java.lang.String |
getType()
Return the event type of this event. |
Wrapper |
getWrapper()
Return the Wrapper managing the servlet instance for which this event occurred. |
Methods inherited from class java.util.EventObject |
getSource, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
public static final java.lang.String BEFORE_INIT_EVENT
init()
method is about
to be called for this instance.
public static final java.lang.String AFTER_INIT_EVENT
init()
method has returned.
public static final java.lang.String BEFORE_SERVICE_EVENT
service()
method is about
to be called on a servlet. The servlet
property contains
the servlet being called, and the request
and
response
properties contain the current request and
response being processed.
public static final java.lang.String AFTER_SERVICE_EVENT
service()
method has
returned. The servlet
property contains the servlet
that was called, and the request
and
response
properties contain the current request and
response being processed.
public static final java.lang.String BEFORE_DESTROY_EVENT
destroy
method is about
to be called for this instance.
public static final java.lang.String AFTER_DESTROY_EVENT
destroy()
method has
returned.
public static final java.lang.String BEFORE_DISPATCH_EVENT
service()
method of a
servlet accessed via a request dispatcher is about to be called.
The servlet
property contains a reference to the
dispatched-to servlet instance, and the request
and
response
properties contain the current request and
response being processed. The wrapper
property will
contain a reference to the dispatched-to Wrapper.
public static final java.lang.String AFTER_DISPATCH_EVENT
service()
method of a
servlet accessed via a request dispatcher has returned. The
servlet
property contains a reference to the
dispatched-to servlet instance, and the request
and
response
properties contain the current request and
response being processed. The wrapper
property will
contain a reference to the dispatched-to Wrapper.
public static final java.lang.String BEFORE_FILTER_EVENT
doFilter()
method of a
Filter is about to be called. The filter
property
contains a reference to the relevant filter instance, and the
request
and response
properties contain
the current request and response being processed.
public static final java.lang.String AFTER_FILTER_EVENT
doFilter()
method of a
Filter has returned. The filter
property contains
a reference to the relevant filter instance, and the
request
and response
properties contain
the current request and response being processed.
Constructor Detail |
public InstanceEvent(Wrapper wrapper, javax.servlet.Filter filter, java.lang.String type)
wrapper
- Wrapper managing this servlet instancefilter
- Filter instance for which this event occurredtype
- Event type (required)public InstanceEvent(Wrapper wrapper, javax.servlet.Filter filter, java.lang.String type, java.lang.Throwable exception)
wrapper
- Wrapper managing this servlet instancefilter
- Filter instance for which this event occurredtype
- Event type (required)exception
- Exception that occurredpublic InstanceEvent(Wrapper wrapper, javax.servlet.Filter filter, java.lang.String type, javax.servlet.ServletRequest request, javax.servlet.ServletResponse response)
wrapper
- Wrapper managing this servlet instancefilter
- Filter instance for which this event occurredtype
- Event type (required)request
- Servlet request we are processingresponse
- Servlet response we are processingpublic InstanceEvent(Wrapper wrapper, javax.servlet.Filter filter, java.lang.String type, javax.servlet.ServletRequest request, javax.servlet.ServletResponse response, java.lang.Throwable exception)
wrapper
- Wrapper managing this servlet instancefilter
- Filter instance for which this event occurredtype
- Event type (required)request
- Servlet request we are processingresponse
- Servlet response we are processingexception
- Exception that occurredpublic InstanceEvent(Wrapper wrapper, javax.servlet.Servlet servlet, java.lang.String type)
wrapper
- Wrapper managing this servlet instanceservlet
- Servlet instance for which this event occurredtype
- Event type (required)public InstanceEvent(Wrapper wrapper, javax.servlet.Servlet servlet, java.lang.String type, java.lang.Throwable exception)
wrapper
- Wrapper managing this servlet instanceservlet
- Servlet instance for which this event occurredtype
- Event type (required)exception
- Exception that occurredpublic InstanceEvent(Wrapper wrapper, javax.servlet.Servlet servlet, java.lang.String type, javax.servlet.ServletRequest request, javax.servlet.ServletResponse response)
wrapper
- Wrapper managing this servlet instanceservlet
- Servlet instance for which this event occurredtype
- Event type (required)request
- Servlet request we are processingresponse
- Servlet response we are processingpublic InstanceEvent(Wrapper wrapper, javax.servlet.Servlet servlet, java.lang.String type, javax.servlet.ServletRequest request, javax.servlet.ServletResponse response, java.lang.Throwable exception)
wrapper
- Wrapper managing this servlet instanceservlet
- Servlet instance for which this event occurredtype
- Event type (required)request
- Servlet request we are processingresponse
- Servlet response we are processingexception
- Exception that occurredMethod Detail |
public java.lang.Throwable getException()
public javax.servlet.Filter getFilter()
public javax.servlet.ServletRequest getRequest()
public javax.servlet.ServletResponse getResponse()
public javax.servlet.Servlet getServlet()
public java.lang.String getType()
public Wrapper getWrapper()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |