| java.lang.Object de.schlund.pfixxml.AbstractContextServletFilter
destroy | public void destroy()(Code) | | |
doFilter | abstract protected void doFilter(HttpServletRequest req, HttpServletResponse res, FilterChain chain, Context context) throws IOException, ServletException(Code) | | Overwrite this method to implement filter. The method code has either to
handle the request and return a response or to call the
doFilter() method on the supplied FilterChain
object. The method will only be called, if the request is a HTTP request.
Parameters: req - request being filtered. May be wrapped by the filter to changevalues / bahavior of the object. Parameters: res - response supplied by the container. May be wrapped by the filter to add new functionality (e.g. filtering of the output). Parameters: chain - object representing the filter chain. Provides methods toforward a request to the next filter in the chain. Parameters: context - Pustefix context object for the current session. May benull if no valid session is available for the current request. throws: IOException - throws: ServletException - |
|
|