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
-
ShiftDeadline()
-
-
doGet(HttpServletRequest, HttpServletResponse)
- Present the form asking for new deadlines
-
doPost(HttpServletRequest, HttpServletResponse)
- Make changes in DB
-
init(ServletConfig)
-
Initialise the servlet
ShiftDeadline
public ShiftDeadline()
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 the form asking for new deadlines
- Parameters:
- res - HttpServletResponse
- req - HttpServletRequest
- Overrides:
- doGet in class HttpServlet
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