Class CustomerQueryServlet

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

public class CustomerQueryServlet
extends HttpServlet
implements SingleThreadModel
This class is an interface for getting Customer Information .


Constructor Index

 o CustomerQueryServlet()

Method Index

 o doGet(HttpServletRequest, HttpServletResponse)
This shows all the tables with customer information relating to a particular customer either from his email-ID or CustomerTag
 o init(ServletConfig)

Constructors

 o CustomerQueryServlet
 public CustomerQueryServlet()

Methods

 o init
 public void init(ServletConfig config) throws ServletException
Overrides:
init in class GenericServlet
 o doGet
 public void doGet(HttpServletRequest request,
                   HttpServletResponse response) throws ServletException, IOException
This shows all the tables with customer information relating to a particular customer either from his email-ID or CustomerTag

Overrides:
doGet in class HttpServlet