Package org.zkoss.web.util.resource
Interface FilterChain
-
public interface FilterChainAFilterChainis an object provided by ZK to the developer giving a view into the invocation chain of a filtered request. Filters useFilterChainto invoke the next filter (Filter) in the chain, or if the calling filter is the last filter in the chain, to invokeExtendletat the end of the chain.- Since:
- 3.5.1
- Author:
- tomyeh
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddoFilter(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
-
-
-
Method Detail
-
doFilter
void doFilter(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws javax.servlet.ServletException, java.io.IOExceptionCauses the next filterFilterin the chain to be invoked, or if the calling filter is the last filter in the chain, causesExtendletat the end of the chain to be invoked.- Parameters:
request- the request (never null).response- the response (never null).- Throws:
javax.servlet.ServletExceptionjava.io.IOException
-
-