gcc/libjava/gnu/java/net/protocol/http/Handler.java

41 lines
939 B
Java
Raw Normal View History

1999-04-07 14:42:40 +00:00
// Handler.java - URLStreamHandler for http protocol.
/* Copyright (C) 1999, 2003 Free Software Foundation
1999-04-07 14:42:40 +00:00
This file is part of libgcj.
This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
details. */
package gnu.java.net.protocol.http;
1999-04-07 14:42:40 +00:00
import java.io.IOException;
1999-04-07 14:42:40 +00:00
import java.net.URL;
import java.net.URLConnection;
import java.net.URLStreamHandler;
/**
* Written using on-line Java Platform 1.2 API Specification, as well
* as "The Java Class Libraries", 2nd edition (Addison-Wesley, 1998).
* Status: Minimal functionality.
*/
/**
* @author Warren Levy
* @author Anthony Green <green@redhat.com>
* @date March 26, 1999.
*/
1999-04-07 14:42:40 +00:00
public class Handler extends URLStreamHandler
{
protected URLConnection openConnection (URL url) throws IOException
1999-04-07 14:42:40 +00:00
{
return new Connection (url);
1999-04-07 14:42:40 +00:00
}
protected int getDefaultPort()
{
return 80;
}
1999-04-07 14:42:40 +00:00
}