Class AddReviewer

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

public class AddReviewer
extends HttpServlet
This servlet adds reviewers to the PC.


Constructor Index

 o AddReviewer()

Method Index

 o doGet(HttpServletRequest, HttpServletResponse)
Add Reviewers, Admin types in email adds of reviewers (comma separated)
 o doPost(HttpServletRequest, HttpServletResponse)
Actually adds them into the DB.
 o init(ServletConfig)
Initialise the servlet

Constructors

 o AddReviewer
 public AddReviewer()

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
Add Reviewers, Admin types in email adds of reviewers (comma separated)

Parameters:
req - HttpServletRequest
res - HttpServletResponse
Overrides:
doGet in class HttpServlet
 o doPost
 public void doPost(HttpServletRequest req,
                    HttpServletResponse res) throws ServletException, IOException
Actually adds them into the DB.

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