Class Reviewer2Servlet

java.lang.Object
   |
   +----javax.servlet.GenericServlet
           |
           +----javax.servlet.http.HttpServlet
                   |
                   +----Reviewer2Servlet

public class Reviewer2Servlet
extends HttpServlet
This servlet takes the reviewer to his main page. Details of all papers he is to review are on the main page. Any messages for all PC members are on the main page. Link to read and post paper-specific messages is on main page. Link to Submit a review and Download a paper are also there.


Constructor Index

 o Reviewer2Servlet()

Method Index

 o doGet(HttpServletRequest, HttpServletResponse)
Generates the mainpage after reading details for the reviewer from the database, and provides links to all necassary servlets.
 o init(ServletConfig)

Constructors

 o Reviewer2Servlet
 public Reviewer2Servlet()

Methods

 o init
 public void init(ServletConfig config) throws ServletException
Overrides:
init in class GenericServlet
 o doGet
 public void doGet(HttpServletRequest req,
                   HttpServletResponse res) throws ServletException, IOException
Generates the mainpage after reading details for the reviewer from the database, and provides links to all necassary servlets.

Parameters:
req - HttpServletRequest
res - HttpServletResponse
Overrides:
doGet in class HttpServlet