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.
-
Reviewer2Servlet()
-
-
doGet(HttpServletRequest, HttpServletResponse)
- Generates the mainpage after reading details for the reviewer from
the database, and provides links to all necassary servlets.
-
init(ServletConfig)
-
Reviewer2Servlet
public Reviewer2Servlet()
init
public void init(ServletConfig config) throws ServletException
- Overrides:
- init in class GenericServlet
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