| com.mvnforum.RequestProcessor
All known Subclasses: com.mvnforum.RequestProcessorDefault,
RequestProcessor | public interface RequestProcessor (Code) | | Interface to hook additional preprocessing to the user request.
This interface is meatn as extension points to ease the integration
of the forum system with external systems.
author: Luis Miguel Hernanz version: $Revision: 1.7 $ |
Method Summary | |
public String | postProcess(HttpServletRequest request, HttpServletResponse response, String responseURI) This method is called just before the call to the final request
dispatcher forward.
Parameters: request - a HttpServletRequest value Parameters: response - a HttpServletResponse value Parameters: responseURI - the path to which the control will beforwarded after this method has finished. | public String | preLogin(HttpServletRequest request, HttpServletResponse response) This is the first method called in the request processing.
Parameters: request - a HttpServletRequest value Parameters: response - a HttpServletResponse value the new responseURI to redirect to. | public String | preProcess(HttpServletRequest request, HttpServletResponse response) The method receives teh user request just before the
authentication has been checked. |
postProcess | public String postProcess(HttpServletRequest request, HttpServletResponse response, String responseURI)(Code) | | This method is called just before the call to the final request
dispatcher forward.
Parameters: request - a HttpServletRequest value Parameters: response - a HttpServletResponse value Parameters: responseURI - the path to which the control will beforwarded after this method has finished. the new responseURI to redirect to. |
preLogin | public String preLogin(HttpServletRequest request, HttpServletResponse response)(Code) | | This is the first method called in the request processing.
Parameters: request - a HttpServletRequest value Parameters: response - a HttpServletResponse value the new responseURI to redirect to. The control will beforwarded to this page (if responseURI is an jsp). No furherprocessing will take place. |
preProcess | public String preProcess(HttpServletRequest request, HttpServletResponse response)(Code) | | The method receives teh user request just before the
authentication has been checked.
Parameters: request - a HttpServletRequest value Parameters: response - a HttpServletResponse value the new responseURI to redirect to. |
|
|