Class AllPapers
java.lang.Object
|
+----javax.servlet.GenericServlet
|
+----javax.servlet.http.HttpServlet
|
+----AllPapers
- public class AllPapers
- extends HttpServlet
This servlet displays all papers along with the PaperId's and other
info.Takes care of blindness as well.
-
AllPapers()
-
-
doGet(HttpServletRequest, HttpServletResponse)
- Displays all papers along with Ids
-
init(ServletConfig)
- Initialise the servlet
AllPapers
public AllPapers()
init
public void init(ServletConfig config) throws ServletException
- Initialise the servlet
- Parameters:
- config - ServletConfig
- Overrides:
- init in class GenericServlet
doGet
public void doGet(HttpServletRequest req,
HttpServletResponse res) throws ServletException, IOException
- Displays all papers along with Ids
- Parameters:
- req - HttpServletRequest
- req - HttpServletResponse
- Overrides:
- doGet in class HttpServlet