com.ibm.websphere.servlet.event

Class FilterListenerImpl

  1. java.lang.Object
  2. extended bycom.ibm.websphere.servlet.event.FilterListenerImpl
All implemented interfaces:
FilterErrorListener, FilterInvocationListener, FilterListener, java.util.EventListener

  1. public class FilterListenerImpl
  2. extends java.lang.Object
  3. implements FilterInvocationListener, FilterListener, FilterErrorListener

Constructor Summary

Constructor and Description
FilterListenerImpl()

Method Summary

Modifier and Type Method and Description
  1. void
onFilterDestroyError(FilterErrorEvent evt)
  1. void
onFilterDoFilterError(FilterErrorEvent evt)
  1. void
onFilterFinishDestroy(FilterEvent filterinvocationevent)
  1. void
onFilterFinishDoFilter(FilterInvocationEvent filterinvocationevent)
  1. void
onFilterFinishInit(FilterEvent filterinvocationevent)
  1. void
onFilterInitError(FilterErrorEvent evt)
  1. void
onFilterStartDestroy(FilterEvent filterinvocationevent)
  1. void
onFilterStartDoFilter(FilterInvocationEvent filterinvocationevent)
  1. void
onFilterStartInit(FilterEvent filterinvocationevent)
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Constructor Detail

FilterListenerImpl

  1. public FilterListenerImpl()

Method Detail

onFilterDestroyError

  1. public void onFilterDestroyError( FilterErrorEvent evt)
Description copied from interface: FilterErrorListener
Triggered when an error occurs while executing the filter's destroy() method. This method will be triggered if the filter throws an exception from its destroy() method.
Specified by:
See Also:
javax.servlet.Servlet#destroy

onFilterDoFilterError

  1. public void onFilterDoFilterError( FilterErrorEvent evt)
Description copied from interface: FilterErrorListener
Triggered when an error occurs while executing the filter's doFilter() method. This method will be triggered if the filter throws an exception from its doFilter() method.
Specified by:
See Also:
javax.servlet.http.HttpServletResponse#sendError, javax.servlet.Filter#doFilter

onFilterInitError

  1. public void onFilterInitError(FilterErrorEvent evt)
Description copied from interface: FilterErrorListener
Triggered when an error occurs while executing the filter's init() method. This method will be triggered if the filter throws an exception from its init() method.
Specified by:
See Also:
javax.servlet.Filter#init

onFilterStartDoFilter

  1. public void onFilterStartDoFilter( FilterInvocationEvent filterinvocationevent)
Description copied from interface: FilterInvocationListener
Triggered just prior to the execution of Filter.doFilter().
Specified by:
See Also:
javax.servlet.Filter

onFilterFinishDoFilter

  1. public void onFilterFinishDoFilter( FilterInvocationEvent filterinvocationevent)
Description copied from interface: FilterInvocationListener
Triggered just after the execution of Filter.doFilter().
Specified by:
See Also:
javax.servlet.Filter

onFilterStartInit

  1. public void onFilterStartInit(FilterEvent filterinvocationevent)
Description copied from interface: FilterListener
Triggered just prior to the execution of Filter.init().
Specified by:
See Also:
javax.servlet.Filter

onFilterFinishInit

  1. public void onFilterFinishInit( FilterEvent filterinvocationevent)
Description copied from interface: FilterListener
Triggered just after the execution of Filter.init().
Specified by:
See Also:
javax.servlet.Filter

onFilterStartDestroy

  1. public void onFilterStartDestroy( FilterEvent filterinvocationevent)
Description copied from interface: FilterListener
Triggered just prior to the execution of Filter.destroy().
Specified by:
See Also:
javax.servlet.Filter

onFilterFinishDestroy

  1. public void onFilterFinishDestroy( FilterEvent filterinvocationevent)
Description copied from interface: FilterListener
Triggered just after the execution of Filter.destroy().
Specified by:
See Also:
javax.servlet.Filter