/[classpath]/inetlib/source/gnu/inet/http/Handler.java
ViewVC logotype

Diff of /inetlib/source/gnu/inet/http/Handler.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by dog, Thu Oct 21 15:21:55 2004 UTC revision 1.3 by dog, Thu Nov 25 22:15:05 2004 UTC
# Line 1  Line 1 
1  /*  /*
2   * $Id$   * Handler.java
3   * Copyright (C) 2004 The Free Software Foundation   * Copyright (C) 2004 The Free Software Foundation
4   *   *
5   * This file is part of GNU inetlib, a library.   * This file is part of GNU inetlib, a library.
# Line 47  import java.net.URLStreamHandler; Line 47  import java.net.URLStreamHandler;
47   * An HTTP URL stream handler.   * An HTTP URL stream handler.
48   *   *
49   * @author <a href='mailto:dog@gnu.org'>Chris Burdess</a>   * @author <a href='mailto:dog@gnu.org'>Chris Burdess</a>
  * @version $Revision$ $Date$  
50   */   */
51  public class Handler extends URLStreamHandler  public class Handler
52      extends URLStreamHandler
53  {  {
54    
55    protected int getDefaultPort ()    /**
56       * Returns the default HTTP port (80).
57       */
58      protected int getDefaultPort()
59    {    {
60      return HTTPConnection.HTTP_PORT;      return HTTPConnection.HTTP_PORT;
61    }    }
62    
63    /**    /**
64     * Returns an FTPURLConnection for the given URL.     * Returns an HTTPURLConnection for the given URL.
65     */     */
66    public URLConnection openConnection (URL url)    public URLConnection openConnection(URL url)
67      throws IOException      throws IOException
68    {    {
69      return new HTTPURLConnection (url);      return new HTTPURLConnection(url);
70    }    }
71    
72  }  }
73    

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26