Class finger

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

public class finger
extends HttpServlet
This class gets all the information about a requested user and prints it back on the users browser.


Variable Index

 o myCom
 o Page

Constructor Index

 o finger()

Method Index

 o doGet(HttpServletRequest, HttpServletResponse)
A very standard procedure is followed .First it sends a query and then using the 'getString' method of java classes it extracts and sends back the information in tabular form to the requesting object.

Variables

 o myCom
 public static Connection myCom
 o Page
 public PrintPage Page

Constructors

 o finger
 public finger()

Methods

 o doGet
 public void doGet(HttpServletRequest req,
                   HttpServletResponse res) throws IOException, ServletException
A very standard procedure is followed .First it sends a query and then using the 'getString' method of java classes it extracts and sends back the information in tabular form to the requesting object.

Overrides:
doGet in class HttpServlet