Class MessageBoard
java.lang.Object
|
+----javax.servlet.GenericServlet
|
+----javax.servlet.http.HttpServlet
|
+----MessageBoard
- public class MessageBoard
- extends HttpServlet
This servlet implements the reading part of the MessageBoards for the PC
All PC members can read messages posted for a particular paper group (if
they have been assigned that paper to review) thru this servlet
-
MessageBoard()
-
-
init(ServletConfig)
- Initialise the servlet
-
service(HttpServletRequest, HttpServletResponse)
- Fetches all the new messages for the reviewer which were meant for
this paper
MessageBoard
public MessageBoard()
init
public void init(ServletConfig config) throws ServletException
- Initialise the servlet
- Parameters:
- config - ServletConfig
- Overrides:
- init in class GenericServlet
service
public void service(HttpServletRequest req,
HttpServletResponse res) throws ServletException, IOException
- Fetches all the new messages for the reviewer which were meant for
this paper
- Parameters:
- req - HttpServletRequest
- req - HttpServletResponse
- Overrides:
- service in class HttpServlet