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.
-
AuthorServlet()
-
-
doGet(HttpServletRequest, HttpServletResponse)
- Present all the related info and links to perform various operations
-
doPost(HttpServletRequest, HttpServletResponse)
- This function is invoked to change author and paper information - it is invoked from
within the Change class
-
init(ServletConfig)
- Initialise the servlet
AuthorServlet
public AuthorServlet()
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
- Present all the related info and links to perform various operations
- Parameters:
- req - HttpServletRequest
- res - HttpServletResponse
- Overrides:
- doGet in class HttpServlet
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