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.


Constructor Index

 o AllPapers()

Method Index

 o doGet(HttpServletRequest, HttpServletResponse)
Displays all papers along with Ids
 o init(ServletConfig)
Initialise the servlet

Constructors

 o AllPapers
 public AllPapers()

Methods

 o init
 public void init(ServletConfig config) throws ServletException
Initialise the servlet

Parameters:
config - ServletConfig
Overrides:
init in class GenericServlet
 o 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