com.ibm.websphere.servlet.event
Interface FilterListener
All Superinterfaces:
java.util.EventListener
- public interface FilterListener
- extends java.util.EventListener
Method Summary
| Modifier and Type | Method and Description |
|---|---|
|
onFilterFinishDestroy(FilterEvent filterinvocationevent)
Triggered just after the execution of Filter.destroy().
|
|
onFilterFinishInit(FilterEvent filterinvocationevent)
Triggered just after the execution of Filter.init().
|
|
onFilterStartDestroy(FilterEvent filterinvocationevent)
Triggered just prior to the execution of Filter.destroy().
|
|
onFilterStartInit(FilterEvent filterinvocationevent)
Triggered just prior to the execution of Filter.init().
|
Method Detail
onFilterStartInit
- void onFilterStartInit(FilterEvent filterinvocationevent)
Triggered just prior to the execution of Filter.init().
See Also:
FilteronFilterFinishInit
- void onFilterFinishInit(FilterEvent filterinvocationevent)
Triggered just after the execution of Filter.init().
See Also:
FilteronFilterStartDestroy
- void onFilterStartDestroy(FilterEvent filterinvocationevent)
Triggered just prior to the execution of Filter.destroy().
See Also:
FilteronFilterFinishDestroy
- void onFilterFinishDestroy(FilterEvent filterinvocationevent)
Triggered just after the execution of Filter.destroy().
See Also:
Filter