Class MarkAssigned

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

public class MarkAssigned
extends HttpServlet
This servlet sets a flag in the DB which indicates that the admin has finally assigned the papers to the reviewers so that the reviewers can proceed to stage 2


Constructor Index

 o MarkAssigned()

Method Index

 o doGet(HttpServletRequest, HttpServletResponse)
Set the flag and take the admin back to his main page
 o init(ServletConfig)
Initialise the servlet

Constructors

 o MarkAssigned
 public MarkAssigned()

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
Set the flag and take the admin back to his main page

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