Source code for /engineering/autohit-1998/autohit/transport/HTTPCookedQuery.javaOriginal file HTTPCookedQuery.java
   1 /**
   2  * .
   3  * Copyright � 1999 Erich P G.
   4  *
   5  */
   6  
   7 package autohit.transport;
   8 
   9 import HTTPClient.NVPair;
  10 
  11 /**
  12  * A cooked query for HTTP client.  I want to get rid of this some day, but
  13  * for now we have to do some translations for HTTPClient.
  14  *
  15  * @author Erich P. Gatejen
  16  * @version 1.1
  17  * <i>Version History</i>
  18  * <code>EPG - Initial - 8Mar99</code> 
  19  * 
  20  */
  21 public class HTTPCookedQuery {
  22 	
  23 	// --- FINAL FIELDS ------------------------------------------------------	
  24 
  25 	// --- FIELDS ------------------------------------------------------------
  26 
  27     /**
  28      * Headers.  
  29      */      	
  30     public NVPair[]    headers;
  31 
  32     /**
  33      * Body elements.
  34      */      	
  35     public NVPair[]    body;
  36     
  37     
  38 	// --- PUBLIC METHODS ----------------------------------------------------
  39  
  40 	// --- PRIVATE METHODS ---------------------------------------------------	
  41 }