Class PaperRegistration
java.lang.Object
|
+----javax.servlet.GenericServlet
|
+----javax.servlet.http.HttpServlet
|
+----PaperRegistration
- public class PaperRegistration
- extends HttpServlet
This servlet requests all relevant author and paper information and stores it into
database tables. It then generates an HTML page which allows upload of the paper. A
login and password are provided at this point.
NOTE: The userId for contact-author will be the paperId given to him for
that paper.
-
PaperRegistration()
-
-
init(ServletConfig)
- Initialize the Servlet, get table and column information and store it in
arrays for use in "service"
-
service(HttpServletRequest, HttpServletResponse)
- This function accepts the information sent in from the form in PaperReg.html
PaperRegistration
public PaperRegistration()
init
public void init(ServletConfig config) throws ServletException
- Initialize the Servlet, get table and column information and store it in
arrays for use in "service"
- Parameters:
- ServletConfig - config
- Overrides:
- init in class GenericServlet
service
public void service(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException
- This function accepts the information sent in from the form in PaperReg.html
- Parameters:
- HttpServletRequest - request
- HttpServletResponse - response
- Overrides:
- service in class HttpServlet