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.
-
FirstLoginServlet()
-
-
doGet(HttpServletRequest, HttpServletResponse)
-
-
doPost(HttpServletRequest, HttpServletResponse)
-
-
init(ServletConfig)
- Initialise the servlet
FirstLoginServlet
public FirstLoginServlet()
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
- Parameters:
- req - HttpServletRequest
- req - HttpServletResponse
- Overrides:
- doGet in class HttpServlet
doPost
public void doPost(HttpServletRequest req,
HttpServletResponse res) throws ServletException, IOException
- Overrides:
- doPost in class HttpServlet