Class AdminServlet

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

public class AdminServlet
extends HttpServlet
This servlet is the interface for the PC Chair (Admin) It provides the PC Chair with all the interfaces required in the process.


Constructor Index

 o AdminServlet()

Method Index

 o doGet(HttpServletRequest, HttpServletResponse)
Present all the related info and links to perform various operation
 o init(ServletConfig)
Initialise the servlet

Constructors

 o AdminServlet
 public AdminServlet()

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 operation

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