com.ibm.websphere.servlet.event
Interface FilterListener

All Superinterfaces:
java.util.EventListener
All Known Implementing Classes:
FilterListenerImpl

public interface FilterListener
extends java.util.EventListener

Event listener interface used for notifications about fiters. Most of these event have to do with the state management of a filter's lifecycle.


Method Summary
 void onFilterFinishDestroy(FilterEvent filterinvocationevent)
          Triggered just after the execution of Filter.destroy().
 void onFilterFinishInit(FilterEvent filterinvocationevent)
          Triggered just after the execution of Filter.init().
 void onFilterStartDestroy(FilterEvent filterinvocationevent)
          Triggered just prior to the execution of Filter.destroy().
 void onFilterStartInit(FilterEvent filterinvocationevent)
          Triggered just prior to the execution of Filter.init().
 

Method Detail

onFilterStartInit

public void onFilterStartInit(FilterEvent filterinvocationevent)
Triggered just prior to the execution of Filter.init().

See Also:
Filter

onFilterFinishInit

public void onFilterFinishInit(FilterEvent filterinvocationevent)
Triggered just after the execution of Filter.init().

See Also:
Filter

onFilterStartDestroy

public void onFilterStartDestroy(FilterEvent filterinvocationevent)
Triggered just prior to the execution of Filter.destroy().

See Also:
Filter

onFilterFinishDestroy

public void onFilterFinishDestroy(FilterEvent filterinvocationevent)
Triggered just after the execution of Filter.destroy().

See Also:
Filter