wt.sysadm
Class SysAdmin

java.lang.Object
  extended bywt.sysadm.SysAdmin

public class SysAdmin
extends Object

The SysAdmin class represents the administrator program. It includes a main method allowing it to serve as a CGI application, but can also be used within a Servlet. This class is responsible for abstracting the CGI/Servlet role so core class of this program need not be aware of the difference. A new instance is created for each request.


Field Summary
protected static boolean VERBOSE
           
private static String versionID
           
 
Constructor Summary
SysAdmin()
          Creates a new SysAdmin object.
 
Method Summary
 void processRequest(SysAdminRequest request, SysAdminResponse response)
          Process request received from the client.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

versionID

private static final String versionID
See Also:
Constant Field Values

VERBOSE

protected static final boolean VERBOSE
Constructor Detail

SysAdmin

public SysAdmin()
Creates a new SysAdmin object.

Method Detail

processRequest

public void processRequest(SysAdminRequest request,
                           SysAdminResponse response)
                    throws IOException
Process request received from the client.

Throws:
IOException