1 /***
2 *
3 */
4 package net.trajano.twiff.test;
5
6 import java.io.IOException;
7 import javax.servlet.ServletException;
8 import javax.servlet.http.HttpServlet;
9 import javax.servlet.http.HttpServletRequest;
10 import javax.servlet.http.HttpServletResponse;
11
12 /***
13 * @author Archimedes Trajano
14 */
15 public class ServletInfoServlet extends HttpServlet {
16 /***
17 * @see javax.servlet.http.HttpServlet#doGet(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
18 */
19 protected void doGet(HttpServletRequest arg0, HttpServletResponse arg1) throws ServletException, IOException {
20 arg0.getRequestDispatcher("/servletInfo.jsp").include(arg0,arg1);
21 }
22 }