AHA
Class CgiUtil

java.lang.Object
  |
  +--java.util.Dictionary
        |
        +--java.util.Hashtable
              |
              +--AHA.CgiUtil

public class CgiUtil
extends java.util.Hashtable

CgiUtil is used to read Forms input (from a POST request) and to store that input in a HashTable. This class is not strictly needed anymore for the servlet, but is kept for now because it already existed for the CGI version. (And if it ain't broke, don't fix it, right?)

See Also:
Serialized Form

Constructor Summary
CgiUtil(java.io.InputStream in, int ContentLength)
          This constructor reads the input from the POST request and stores it in a HashTable.
 
Methods inherited from class java.util.Hashtable
clear, clone, contains, containsKey, containsValue, elements, entrySet, equals, get, hashCode, isEmpty, keys, keySet, put, putAll, rehash, remove, size, toString, values
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CgiUtil

public CgiUtil(java.io.InputStream in,
               int ContentLength)
        throws AhaException
This constructor reads the input from the POST request and stores it in a HashTable.
Throws:
AhaException - If there is an error in the forms input.