private AsMap processPost(HttpServletRequest request, HttpServletResponse response)
     throws Exception {
   String commandIndentifier = request.getParameter(Constants.RequestParameter.COMMAND);
   return commandProcessor.processCommand(commandIndentifier, request, response);
 }
 @Override
 public void init() throws ServletException {
   LOGGER.log(Level.INFO, "init");
   this.exceptionProcessor = ExceptionProcessor.getInstance();
   this.commandProcessor = CommandProcessor.getInstance();
 }