Project 3

cscie259.project3.wahoo
Class View

java.lang.Object
  extended byjavax.servlet.GenericServlet
      extended byjavax.servlet.http.HttpServlet
          extended bycscie259.project3.wahoo.WahooServlet
              extended bycscie259.project3.wahoo.View
All Implemented Interfaces:
java.io.Serializable, javax.servlet.Servlet, javax.servlet.ServletConfig

public class View
extends WahooServlet

This servlet displays the main personalized view in the Wahoo portal. You MUST modify this file.

Version:
6.0
Author:
Computer Science E-259, YOUR NAME GOES HERE
See Also:
Serialized Form

Field Summary
 
Fields inherited from class javax.servlet.http.HttpServlet
 
Fields inherited from class javax.servlet.GenericServlet
 
Constructor Summary
View()
           
 
Method Summary
 void doWork(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Displays the current user's main view; if user attempts to execute this servlet before user's authenticated (via the login servlet), should redirect user to login servlet.
 
Methods inherited from class cscie259.project3.wahoo.WahooServlet
doGet, doPost, forward, init, redirect
 
Methods inherited from class javax.servlet.http.HttpServlet
doDelete, doHead, doOptions, doPut, doTrace, getLastModified, service, service
 
Methods inherited from class javax.servlet.GenericServlet
destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, log, log
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

View

public View()
Method Detail

doWork

public void doWork(javax.servlet.http.HttpServletRequest request,
                   javax.servlet.http.HttpServletResponse response)
            throws java.io.IOException,
                   javax.servlet.ServletException
Displays the current user's main view; if user attempts to execute this servlet before user's authenticated (via the login servlet), should redirect user to login servlet.

Specified by:
doWork in class WahooServlet
Parameters:
request - HTTP request object
response - HTTP response object
Throws:
java.io.IOException - if an IO-related error occurs
javax.servlet.ServletException - if a servlet-related error occurs

Project 3