Package com.ibm.websphere.servlet.event
Interface FilterListener
- 
- All Superinterfaces:
- java.util.EventListener
 - All Known Implementing Classes:
- FilterListenerImpl
 
 public interface FilterListener extends java.util.EventListenerEvent listener interface used for notifications about fiters. Most of these event have to do with the state management of a filter's lifecycle.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonFilterFinishDestroy(FilterEvent filterinvocationevent)Triggered just after the execution of Filter.destroy().voidonFilterFinishInit(FilterEvent filterinvocationevent)Triggered just after the execution of Filter.init().voidonFilterStartDestroy(FilterEvent filterinvocationevent)Triggered just prior to the execution of Filter.destroy().voidonFilterStartInit(FilterEvent filterinvocationevent)Triggered just prior to the execution of Filter.init().
 
- 
- 
- 
Method Detail- 
onFilterStartInitvoid onFilterStartInit(FilterEvent filterinvocationevent) Triggered just prior to the execution of Filter.init().- See Also:
- Filter
 
 - 
onFilterFinishInitvoid onFilterFinishInit(FilterEvent filterinvocationevent) Triggered just after the execution of Filter.init().- See Also:
- Filter
 
 - 
onFilterStartDestroyvoid onFilterStartDestroy(FilterEvent filterinvocationevent) Triggered just prior to the execution of Filter.destroy().- See Also:
- Filter
 
 - 
onFilterFinishDestroyvoid onFilterFinishDestroy(FilterEvent filterinvocationevent) Triggered just after the execution of Filter.destroy().- See Also:
- Filter
 
 
- 
 
-