OSDN Git Service

c2b7487ff5250c439d27cd0549d14fa52dd5cf5b
[pf3gnuchains/gcc-fork.git] / libjava / gnu / gcj / protocol / http / Handler.java
1 // Handler.java - URLStreamHandler for http protocol.
2
3 /* Copyright (C) 1999  Red Hat, Inc.
4
5    This file is part of libgcj.
6
7 This software is copyrighted work licensed under the terms of the
8 Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
9 details.  */
10
11 package gnu.gcj.protocol.http;
12
13 import java.net.URL;
14 import java.net.URLConnection;
15 import java.net.URLStreamHandler;
16 import java.io.IOException;
17
18 /**
19  * @author Warren Levy <warrenl@cygnus.com>
20  * @date March 26, 1999.
21  */
22
23 /**
24  * Written using on-line Java Platform 1.2 API Specification, as well
25  * as "The Java Class Libraries", 2nd edition (Addison-Wesley, 1998).
26  * Status:  Minimal functionality.
27  */
28
29 public class Handler extends URLStreamHandler
30 {
31   protected URLConnection openConnection(URL url) throws IOException
32   {
33     return new Connection(url);
34   }
35 }