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.
-
AdminServlet()
-
-
doGet(HttpServletRequest, HttpServletResponse)
- Present all the related info and links to perform various operation
-
init(ServletConfig)
-
Initialise the servlet
AdminServlet
public AdminServlet()
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 operation
- Parameters:
- res - HttpServletResponse
- req - HttpServletRequest
- Overrides:
- doGet in class HttpServlet