public interface CometFilter extends Filter
doFilterEvent
method. Every Filter has access to
a FilterConfig object from which it can obtain its initialization parameters, a
reference to the ServletContext which it can use, for example, to load resources
needed for filtering tasks.
Filters are configured in the deployment descriptor of a web application
Examples that have been identified for this design are
1) Authentication Filters
2) Logging and Auditing Filters
3) Image conversion Filters
4) Data compression Filters
5) Encryption Filters
6) Tokenizing Filters
7) Filters that trigger resource access events
8) XSL/T filters
9) Mime-type chain Filter
Modifier and Type | Method and Description |
---|---|
void |
doFilterEvent(CometEvent event,
CometFilterChain chain)
The
doFilterEvent method of the CometFilter is called by the container
each time a request/response pair is passed through the chain due
to a client event for a resource at the end of the chain. |
void doFilterEvent(CometEvent event, CometFilterChain chain) throws IOException, ServletException
doFilterEvent
method of the CometFilter is called by the container
each time a request/response pair is passed through the chain due
to a client event for a resource at the end of the chain. The CometFilterChain passed in to this
method allows the Filter to pass on the event to the next entity in the
chain.
A typical implementation of this method would follow the following pattern:-
1. Examine the request
2. Optionally wrap the request object contained in the event with a custom implementation to
filter content or headers for input filtering and pass a CometEvent instance containing
the wrapped request to the next filter
3. Optionally wrap the response object contained in the event with a custom implementation to
filter content or headers for output filtering and pass a CometEvent instance containing
the wrapped request to the next filter
4. a) Either invoke the next entity in the chain using the CometFilterChain object (chain.doFilterEvent()
),
4. b) or not pass on the request/response pair to the next entity in the filter chain to block the event processing
5. Directly set fields on the response after invocation of the next entity in the filter chain.
event
- the event that is being processed. Another event may be passed along the chain.chain
- the chain of CometFilter instances for the current request/responseIOException
- If an I/O error occursServletException
- If an error occurs during event processingCopyright © 2000-2021 Apache Software Foundation. All Rights Reserved.