Class DateServlet

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

public class DateServlet
extends HttpServlet
This servlet checks whether the participation and paper submission dates have passed and acordingly displays appropriate messages


Constructor Index

 o DateServlet()

Method Index

 o doGet(HttpServletRequest, HttpServletResponse)
Filters participants and author registrations.
 o init(ServletConfig)
Initialise the servlet

Constructors

 o DateServlet
 public DateServlet()

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
Filters participants and author registrations.

Parameters:
req - HttpServletRequest
req - HttpServletResponse
Overrides:
doGet in class HttpServlet