private void processRequest(HttpServletRequest request,HttpServletResponse response)
throws ServletException, IOException {
CommandParams<HttpServletRequest> commandsParams = new RequestCommandsParams();
commandsParams.setCommandParamsSource(request);
Command command = RequestHelper.INSTANCE.getCommand(commandsParams);
String page = command.execute(commandsParams);
request = commandsParams.getCommandParamsSource();
response.encodeRedirectURL(page);
RequestDispatcher dispatcher = request.getRequestDispatcher(page);
dispatcher.forward(request, response);