
This file outlines the working of the T&P web server in serving
requests from staff of T&P.


The servlet StaffServlet does the initialization of the session of the
T&P staff working. It then generates a menu containing options that the
staff member has. Each menu is handled by a different servlet.
Information across the requests in maintained by the session management
provided internally by servlets.


The menu for Company data base calls the CompanyList servlet which
generates a page containing all the companies and their coressponding
links to CompanyModify servlet.

The CompanyModify servlet processes the forms changing the basic
information about a company.

The PPT/Interview scheduling is handled by CompanyScheduler which works
on lines similar to CompanyModify. It generates list of company
PPT's/Interview's if invoked with null queries else they give forms to
manipulate the specific company's database value.

The servlets relating to the company database use the functionality
provided by COM class which provides an interface to add,remove,modify a
companies information as well as schedule of its ppt/interview. 


The servlets for other modules can be developed on lines similar to the
one used for companies.


