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


Constructor Index

 o MessageBoard()

Method Index

 o init(ServletConfig)
Initialise the servlet
 o service(HttpServletRequest, HttpServletResponse)
Fetches all the new messages for the reviewer which were meant for this paper

Constructors

 o MessageBoard
 public MessageBoard()

Methods

 o init
 public void init(ServletConfig config) throws ServletException
Initialise the servlet

Parameters:
config - ServletConfig
Overrides:
init in class GenericServlet
 o 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