public interface FilterChain
FilterChain is an object provided by ZK to the developer
giving a view into the invocation chain of a filtered request.
Filters use FilterChain to invoke the next filter
(Filter) in the chain,
or if the calling filter is the last filter in the chain,
to invoke Extendlet at the end of the chain.| Modifier and Type | Method and Description |
|---|---|
void |
doFilter(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
|
void doFilter(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
throws javax.servlet.ServletException,
IOException
Filter in the chain to be invoked,
or if the calling filter is the last filter in the chain,
causes Extendlet at the end of the chain to be invoked.request - the request (never null).response - the response (never null).javax.servlet.ServletExceptionIOExceptionCopyright © 2022. All rights reserved.