Package com.ibm.websphere.servlet.event
Interface ServletInvocationListener
- All Superinterfaces:
EventListener
Event listener interface used for notifications about Servlet service invocations.
Implementors of this interface must be very cautious about the time spent processing
these events because they occur on the servlet's actual request processing path.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Triggered just after the execution of Servlet.service().void
Triggered just prior to the execution of Servlet.service().
-
Method Details
-
onServletStartService
Triggered just prior to the execution of Servlet.service().- See Also:
-
javax.servlet.service
-
onServletFinishService
Triggered just after the execution of Servlet.service().- See Also:
-
javax.servlet.service
-