KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > net > axis > transport > mailto > Handler


1 /*
2  * Copyright (C) The Apache Software Foundation. All rights reserved.
3  *
4  * This software is published under the terms of the Apache Software License
5  * version 1.1, a copy of which has been included with this distribution in
6  * the docs/licenses/apache-1.1.txt file.
7  */

8 package org.jboss.net.axis.transport.mailto;
9
10 import java.io.IOException JavaDoc;
11 import java.net.URL JavaDoc;
12 import java.net.URLConnection JavaDoc;
13 import java.net.URLStreamHandler JavaDoc;
14
15 /**
16  * <dl>
17  * <dt><b>Title: </b><dd></dd>
18  * <p>
19  * <dt><b>Description: </b><dd></dd>
20  * <p>
21  * <dt><b>Copyright: </b><dd>Copyright (c) 2004</dd>
22  * <dt><b>Company: </b><dd>Green River Computing Services</dd>
23  * </dl>
24  * @author <a HREF="mailto:jasone@greenrivercomputing.com">Jason Essington</a>
25  * @version $Revision: 1.1.6.1 $
26  */

27 public class Handler extends URLStreamHandler JavaDoc
28 {
29
30    /* (non-Javadoc)
31     * @see java.net.URLStreamHandler#openConnection(java.net.URL)
32     */

33    protected URLConnection JavaDoc openConnection(URL JavaDoc arg0) throws IOException JavaDoc
34    {
35       // TODO Auto-generated method stub
36
return null;
37    }
38
39 }
40
Popular Tags