Class AuthorServlet

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

public class AuthorServlet
extends HttpServlet
This servlet is the interface for Authors - all authors have valid logins before the the deadline for paper submission.


Constructor Index

 o AuthorServlet()

Method Index

 o doGet(HttpServletRequest, HttpServletResponse)
Present all the related info and links to perform various operations
 o doPost(HttpServletRequest, HttpServletResponse)
This function is invoked to change author and paper information - it is invoked from within the Change class
 o init(ServletConfig)
Initialise the servlet

Constructors

 o AuthorServlet
 public AuthorServlet()

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
Present all the related info and links to perform various operations

Parameters:
req - HttpServletRequest
res - HttpServletResponse
Overrides:
doGet in class HttpServlet
 o doPost
 public void doPost(HttpServletRequest request,
                    HttpServletResponse response) throws ServletException, IOException
This function is invoked to change author and paper information - it is invoked from within the Change class

Parameters:
HttpServletRequest - request
HttpServletResponse - response
Overrides:
doPost in class HttpServlet