Package com.ibm.websphere.servlet.event
Interface ServletInvocationListener
- 
- All Superinterfaces:
- java.util.EventListener
 
 public interface ServletInvocationListener extends java.util.EventListenerEvent 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 SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonServletFinishService(ServletInvocationEvent evt)Triggered just after the execution of Servlet.service().voidonServletStartService(ServletInvocationEvent evt)Triggered just prior to the execution of Servlet.service().
 
- 
- 
- 
Method Detail- 
onServletStartServicevoid onServletStartService(ServletInvocationEvent evt) Triggered just prior to the execution of Servlet.service().- See Also:
- javax.servlet.service
 
 - 
onServletFinishServicevoid onServletFinishService(ServletInvocationEvent evt) Triggered just after the execution of Servlet.service().- See Also:
- javax.servlet.service
 
 
- 
 
-