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
-
MarkAssigned()
-
-
doGet(HttpServletRequest, HttpServletResponse)
- Set the flag and take the admin back to his main page
-
init(ServletConfig)
- Initialise the servlet
MarkAssigned
public MarkAssigned()
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
- Set the flag and take the admin back to his main page
- Parameters:
- req - HttpServletRequest
- res - HttpServletResponse
- Overrides:
- doGet in class HttpServlet