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 .
-
CustomerQueryServlet()
-
-
doGet(HttpServletRequest, HttpServletResponse)
- This shows all the tables with customer information relating to a
particular customer either from his email-ID or CustomerTag
-
init(ServletConfig)
-
CustomerQueryServlet
public CustomerQueryServlet()
init
public void init(ServletConfig config) throws ServletException
- Overrides:
- init in class GenericServlet
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