Class ShiftDeadline

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

public class ShiftDeadline
extends HttpServlet
This servlet is the interface for the PC Chair (Admin) to change the paper-submission or participant-registration deadlines


Constructor Index

 o ShiftDeadline()

Method Index

 o doGet(HttpServletRequest, HttpServletResponse)
Present the form asking for new deadlines
 o doPost(HttpServletRequest, HttpServletResponse)
Make changes in DB
 o init(ServletConfig)
Initialise the servlet

Constructors

 o ShiftDeadline
 public ShiftDeadline()

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 the form asking for new deadlines

Parameters:
res - HttpServletResponse
req - HttpServletRequest
Overrides:
doGet in class HttpServlet
 o doPost
 public void doPost(HttpServletRequest req,
                    HttpServletResponse res) throws ServletException, IOException
Make changes in DB

Parameters:
res - HttpServletResponse
req - HttpServletRequest
Overrides:
doPost in class HttpServlet