home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / sun / net / www / protocol / http / Handler.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  624 b   |  30 lines

  1. package sun.net.www.protocol.http;
  2.  
  3. import java.io.IOException;
  4. import java.net.URL;
  5. import java.net.URLConnection;
  6. import java.net.URLStreamHandler;
  7.  
  8. public class Handler extends URLStreamHandler {
  9.    protected String proxy;
  10.    protected int proxyPort;
  11.  
  12.    protected int getDefaultPort() {
  13.       return 80;
  14.    }
  15.  
  16.    public Handler() {
  17.       this.proxy = null;
  18.       this.proxyPort = -1;
  19.    }
  20.  
  21.    public Handler(String var1, int var2) {
  22.       this.proxy = var1;
  23.       this.proxyPort = var2;
  24.    }
  25.  
  26.    protected URLConnection openConnection(URL var1) throws IOException {
  27.       return new HttpURLConnection(var1, this);
  28.    }
  29. }
  30.