Source code for /engineering/autohit-1998/autohit/transport/Query.javaOriginal file Query.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 standard query for the transport facillity.
  13  * <p>
  14  * We are going to "borrow" a class from the HTTPClient lib--NVPair.
  15  * However, this Query class is *NOT* specific to http transports.
  16  *
  17  * @author Erich P. Gatejen
  18  * @version 1.0
  19  * <i>Version History</i>
  20  * <code>EPG - Initial - 18Jan99</code> 
  21  * 
  22  */
  23 public class Query {
  24 	
  25 	// --- FINAL FIELDS ------------------------------------------------------	
  26 
  27 	// --- FIELDS ------------------------------------------------------------
  28 
  29     /**
  30      * Headers.  
  31      */      	
  32     public NVPair[]    headers;
  33 
  34     /**
  35      * Query String.
  36      */      	
  37     public String      qs;
  38     
  39     /**
  40      * Body elements.
  41      */      	
  42     public NVPair[]    body;
  43     
  44     
  45 	// --- PUBLIC METHODS ----------------------------------------------------
  46  
  47 	// --- PRIVATE METHODS ---------------------------------------------------	
  48 }