Package com.ibm.websphere.servlet.event
Class FilterEvent
java.lang.Object
java.util.EventObject
com.ibm.websphere.servlet.event.FilterEvent
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
FilterErrorEvent
,FilterInvocationEvent
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionFilterEvent
(Object source, javax.servlet.FilterConfig filterConfig) FilterEvent contructor. -
Method Summary
Modifier and TypeMethodDescriptionjavax.servlet.FilterConfig
Return the FilterConfig that this event is associated with.Return the name of the Filter that this event is associated with.Methods inherited from class java.util.EventObject
getSource, toString
-
Constructor Details
-
FilterEvent
FilterEvent contructor.- Parameters:
source
- the object that triggered this event.filterConfig
- the filter's FilterConfig.
-
-
Method Details
-
getFilterName
Return the name of the Filter that this event is associated with. -
getFilterConfig
public javax.servlet.FilterConfig getFilterConfig()Return the FilterConfig that this event is associated with.
-