Package com.ibm.websphere.servlet.event
Class FilterListenerImpl
java.lang.Object
com.ibm.websphere.servlet.event.FilterListenerImpl
- All Implemented Interfaces:
FilterErrorListener
,FilterInvocationListener
,FilterListener
,EventListener
public class FilterListenerImpl
extends Object
implements FilterInvocationListener, FilterListener, FilterErrorListener
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Triggered when an error occurs while executing the filter's destroy() method.void
Triggered when an error occurs while executing the filter's doFilter() method.void
onFilterFinishDestroy
(FilterEvent filterinvocationevent) Triggered just after the execution of Filter.destroy().void
onFilterFinishDoFilter
(FilterInvocationEvent filterinvocationevent) Triggered just after the execution of Filter.doFilter().void
onFilterFinishInit
(FilterEvent filterinvocationevent) Triggered just after the execution of Filter.init().void
Triggered when an error occurs while executing the filter's init() method.void
onFilterStartDestroy
(FilterEvent filterinvocationevent) Triggered just prior to the execution of Filter.destroy().void
onFilterStartDoFilter
(FilterInvocationEvent filterinvocationevent) Triggered just prior to the execution of Filter.doFilter().void
onFilterStartInit
(FilterEvent filterinvocationevent) Triggered just prior to the execution of Filter.init().
-
Constructor Details
-
FilterListenerImpl
public FilterListenerImpl()
-
-
Method Details
-
onFilterDestroyError
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:
onFilterDestroyError
in interfaceFilterErrorListener
- See Also:
-
Servlet.destroy()
-
onFilterDoFilterError
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 interfaceFilterErrorListener
- See Also:
-
HttpServletResponse.sendError(int)
Filter.doFilter(javax.servlet.ServletRequest, javax.servlet.ServletResponse, javax.servlet.FilterChain)
-
onFilterInitError
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 interfaceFilterErrorListener
- See Also:
-
Filter.init(javax.servlet.FilterConfig)
-
onFilterStartDoFilter
Description copied from interface:FilterInvocationListener
Triggered just prior to the execution of Filter.doFilter().- Specified by:
onFilterStartDoFilter
in interfaceFilterInvocationListener
- See Also:
-
Filter
-
onFilterFinishDoFilter
Description copied from interface:FilterInvocationListener
Triggered just after the execution of Filter.doFilter().- Specified by:
onFilterFinishDoFilter
in interfaceFilterInvocationListener
- See Also:
-
Filter
-
onFilterStartInit
Description copied from interface:FilterListener
Triggered just prior to the execution of Filter.init().- Specified by:
onFilterStartInit
in interfaceFilterListener
- See Also:
-
Filter
-
onFilterFinishInit
Description copied from interface:FilterListener
Triggered just after the execution of Filter.init().- Specified by:
onFilterFinishInit
in interfaceFilterListener
- See Also:
-
Filter
-
onFilterStartDestroy
Description copied from interface:FilterListener
Triggered just prior to the execution of Filter.destroy().- Specified by:
onFilterStartDestroy
in interfaceFilterListener
- See Also:
-
Filter
-
onFilterFinishDestroy
Description copied from interface:FilterListener
Triggered just after the execution of Filter.destroy().- Specified by:
onFilterFinishDestroy
in interfaceFilterListener
- See Also:
-
Filter
-