Class AddUserServlet

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

public class AddUserServlet
extends SQLServlet

Constructor Index

 o AddUserServlet()

Method Index

 o doGet(HttpServletRequest, HttpServletResponse)
The is booking servlet interface.
 o doPost(HttpServletRequest, HttpServletResponse)
The main Servlet doing the insertion
 o init(ServletConfig)
Ths init Method .

Constructors

 o AddUserServlet
 public AddUserServlet()

Methods

 o init
 public void init(ServletConfig config) throws ServletException
Ths init Method . Gets the connection

Overrides:
init in class SQLServlet
 o doGet
 public void doGet(HttpServletRequest request,
                   HttpServletResponse response) throws ServletException, IOException
The is booking servlet interface.

Overrides:
doGet in class HttpServlet
 o doPost
 public void doPost(HttpServletRequest request,
                    HttpServletResponse response) throws ServletException, IOException
The main Servlet doing the insertion

Overrides:
doPost in class HttpServlet