Class FirstLoginServlet

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

public class FirstLoginServlet
extends HttpServlet
This servlet gets all the personal information of the admin or the reviewer when he logs in for the first time.


Constructor Index

 o FirstLoginServlet()

Method Index

 o doGet(HttpServletRequest, HttpServletResponse)
 o doPost(HttpServletRequest, HttpServletResponse)
 o init(ServletConfig)
Initialise the servlet

Constructors

 o FirstLoginServlet
 public FirstLoginServlet()

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
Parameters:
req - HttpServletRequest
req - HttpServletResponse
Overrides:
doGet in class HttpServlet
 o doPost
 public void doPost(HttpServletRequest req,
                    HttpServletResponse res) throws ServletException, IOException
Overrides:
doPost in class HttpServlet