Redirects user to index.jsp
(HttpServletRequest request, HttpServletResponse response)
| 151 | * Redirects user to index.jsp |
| 152 | */ |
| 153 | public void doGet (HttpServletRequest request, HttpServletResponse response) |
| 154 | throws ServletException, IOException{ |
| 155 | response.sendRedirect("index.jsp"); |
| 156 | } |
| 157 | } |