| de.jwic.web.ServletInterceptor
All known Subclasses: de.jwic.web.RemoteUserBinding,
ServletInterceptor | public interface ServletInterceptor (Code) | | Implementors of this Interface are invoked before and after
the DispatcherServlet has handled a request.
version: $Revision: 1.1 $ author: Florian Lippisch |
postHandle | void postHandle(HttpServletRequest request, HttpServletResponse resp)(Code) | | This method is invoked by the DispatcherServlet after the request
was handled and the data has been sent to the client.
Parameters: req - Parameters: request - Parameters: resp - |
preHandle | void preHandle(HttpServletRequest request, HttpServletResponse resp)(Code) | | This method is invoked by the DispatcherServlet before the
request is handled.
Parameters: req - Parameters: request - Parameters: resp - |
|
|