com.ibm.websphere.servlet.event

Interface ServletInvocationListener

All Superinterfaces:
java.util.EventListener
All known implementing classes:
BufferManager

  1. public interface ServletInvocationListener
  2. extends java.util.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 Type Method and Description
  1. void
onServletFinishService(ServletInvocationEvent evt)
Triggered just after the execution of Servlet.service().
  1. void
onServletStartService(ServletInvocationEvent evt)
Triggered just prior to the execution of Servlet.service().

Method Detail

onServletStartService

  1. void onServletStartService(ServletInvocationEvent evt)
Triggered just prior to the execution of Servlet.service().
See Also:
javax.servlet.service

onServletFinishService

  1. void onServletFinishService(ServletInvocationEvent evt)
Triggered just after the execution of Servlet.service().
See Also:
javax.servlet.service