com.ibm.websphere.servlet.event
Class FilterListenerImpl
- java.lang.Object
com.ibm.websphere.servlet.event.FilterListenerImpl
All implemented interfaces:
- public class FilterListenerImpl
- extends java.lang.Object
- implements FilterInvocationListener, FilterListener, FilterErrorListener
Constructor Summary
Constructor and Description |
---|
FilterListenerImpl()
|
Method Summary
Modifier and Type | Method and Description |
---|---|
|
onFilterDestroyError(FilterErrorEvent evt)
|
|
onFilterDoFilterError(FilterErrorEvent evt)
|
|
onFilterFinishDestroy(FilterEvent filterinvocationevent)
|
|
onFilterFinishDoFilter(FilterInvocationEvent filterinvocationevent)
|
|
onFilterFinishInit(FilterEvent filterinvocationevent)
|
|
onFilterInitError(FilterErrorEvent evt)
|
|
onFilterStartDestroy(FilterEvent filterinvocationevent)
|
|
onFilterStartDoFilter(FilterInvocationEvent filterinvocationevent)
|
|
onFilterStartInit(FilterEvent filterinvocationevent)
|
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail
FilterListenerImpl
- public FilterListenerImpl()
Method Detail
onFilterDestroyError
- public void onFilterDestroyError( FilterErrorEvent evt)
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:
onFilterDestroyError
in interface FilterErrorListener
See Also:
javax.servlet.Servlet#destroy
onFilterDoFilterError
- 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:
onFilterDoFilterError
in interface FilterErrorListener
See Also:
javax.servlet.http.HttpServletResponse#sendError
,
javax.servlet.Filter#doFilter
onFilterInitError
- 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:
onFilterInitError
in interface FilterErrorListener
See Also:
javax.servlet.Filter#init
onFilterStartDoFilter
- public void onFilterStartDoFilter( FilterInvocationEvent filterinvocationevent)
Description copied from interface:
FilterInvocationListener
Triggered just prior to the execution of Filter.doFilter().
Specified by:
onFilterStartDoFilter
in interface FilterInvocationListener
See Also:
javax.servlet.Filter
onFilterFinishDoFilter
- public void onFilterFinishDoFilter( FilterInvocationEvent filterinvocationevent)
Description copied from interface:
FilterInvocationListener
Triggered just after the execution of Filter.doFilter().
Specified by:
onFilterFinishDoFilter
in interface FilterInvocationListener
See Also:
javax.servlet.Filter
onFilterStartInit
- public void onFilterStartInit(FilterEvent filterinvocationevent)
Description copied from interface:
FilterListener
Triggered just prior to the execution of Filter.init().
Specified by:
onFilterStartInit
in interface FilterListener
See Also:
javax.servlet.Filter
onFilterFinishInit
- public void onFilterFinishInit( FilterEvent filterinvocationevent)
Description copied from interface:
FilterListener
Triggered just after the execution of Filter.init().
Specified by:
onFilterFinishInit
in interface FilterListener
See Also:
javax.servlet.Filter
onFilterStartDestroy
- public void onFilterStartDestroy( FilterEvent filterinvocationevent)
Description copied from interface:
FilterListener
Triggered just prior to the execution of Filter.destroy().
Specified by:
onFilterStartDestroy
in interface FilterListener
See Also:
javax.servlet.Filter
onFilterFinishDestroy
- public void onFilterFinishDestroy( FilterEvent filterinvocationevent)
Description copied from interface:
FilterListener
Triggered just after the execution of Filter.destroy().
Specified by:
onFilterFinishDestroy
in interface FilterListener
See Also:
javax.servlet.Filter
FilterErrorListener