com.ibm.websphere.servlet.event

Interface FilterInvocationListener

All Superinterfaces:
java.util.EventListener

  1. public interface FilterInvocationListener
  2. extends java.util.EventListener

Method Summary

Modifier and Type Method and Description
  1. void
onFilterFinishDoFilter(FilterInvocationEvent filterinvocationevent)
Triggered just after the execution of Filter.doFilter().
  1. void
onFilterStartDoFilter(FilterInvocationEvent filterinvocationevent)
Triggered just prior to the execution of Filter.doFilter().

Method Detail

onFilterStartDoFilter

  1. void onFilterStartDoFilter(FilterInvocationEvent filterinvocationevent)
Triggered just prior to the execution of Filter.doFilter().
See Also:
Filter

onFilterFinishDoFilter

  1. void onFilterFinishDoFilter(FilterInvocationEvent filterinvocationevent)
Triggered just after the execution of Filter.doFilter().
See Also:
Filter