Delegate the GET request to our requestHandler() . @param req a value of type 'HttpServletRequest' @param res a value of type 'HttpServletResponse' @exception IOException if an error occurs @exception ServletException if an error occurs
(HttpServletRequest req, HttpServletResponse res)
| 110 | * @exception ServletException if an error occurs |
| 111 | */ |
| 112 | @Override |
| 113 | public void doGet(HttpServletRequest req, HttpServletResponse res) throws IOException, ServletException { |
| 114 | if (debug > 0) { |
| 115 | log("SSIServlet.doGet()"); |
| 116 | } |
| 117 | requestHandler(req, res); |
| 118 | } |
| 119 | |
| 120 | |
| 121 | /** |
nothing calls this directly
no test coverage detected