RoseHill
Class DeedZoom

java.lang.Object
  |
  +--javax.servlet.GenericServlet
        |
        +--javax.servlet.http.HttpServlet
              |
              +--RoseHill.DeedZoom
All Implemented Interfaces:
java.io.Serializable, javax.servlet.Servlet, javax.servlet.ServletConfig

public class DeedZoom
extends javax.servlet.http.HttpServlet

Shows a deed record in a form and lets the user to update or delete it.

See Also:
Serialized Form

Field Summary
static java.lang.String[] allmonths
           
 
Constructor Summary
DeedZoom()
           
 
Method Summary
 void databaseConnect()
          Connects to the rosehill database.
 void databaseDisconnect()
          Disconnects from the rosehill database.
 void doGet(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res)
          Shows a deed record in a form.
 void doPost(javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res)
          Updates or deletes a deed record according to users request.
 
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, init, log, log
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

allmonths

public static java.lang.String[] allmonths
Constructor Detail

DeedZoom

public DeedZoom()
Method Detail

doGet

public void doGet(javax.servlet.http.HttpServletRequest req,
                  javax.servlet.http.HttpServletResponse res)
           throws javax.servlet.ServletException,
                  java.io.IOException
Shows a deed record in a form.
Overrides:
doGet in class javax.servlet.http.HttpServlet
Parameters:
req - the request input stream
res - the ouput stream
Throws:
javax.servlet.ServletException -  
java.io.IOException -  

doPost

public void doPost(javax.servlet.http.HttpServletRequest req,
                   javax.servlet.http.HttpServletResponse res)
            throws javax.servlet.ServletException,
                   java.io.IOException
Updates or deletes a deed record according to users request.
Overrides:
doPost in class javax.servlet.http.HttpServlet
Parameters:
req - the request input stream
res - the ouput stream
Throws:
javax.servlet.ServletException -  
java.io.IOException -  

databaseConnect

public void databaseConnect()
Connects to the rosehill database.

databaseDisconnect

public void databaseDisconnect()
Disconnects from the rosehill database.