home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 July / Chip_1998-07_cd.bin / zkuste / JBuilder / BDK / Win / bdk_sep97.exe / _SETUP.1 / HttpProxy.java < prev    next >
Encoding:
Java Source  |  1997-09-10  |  309 b   |  22 lines

  1.  
  2. package sunw.demo.quote;
  3.  
  4. import java.io.Serializable;
  5.  
  6.  
  7. public class HttpProxy implements Serializable
  8. {
  9.   private String host;
  10.   private int port;
  11.  
  12.   HttpProxy(String hostArg, int portArg)
  13.   {
  14.     host = hostArg;
  15.     port = portArg;
  16.   }
  17.  
  18.   String getHost() {return host;}
  19.   int getPort() {return port;}
  20. }
  21.  
  22.