1 /*2 * Copyright (C) The Apache Software Foundation. All rights reserved.3 *4 * This software is published under the terms of the Apache Software License5 * version 1.1, a copy of which has been included with this distribution in6 * the docs/licenses/apache-1.1.txt file.7 */8 package org.jboss.net.axis.transport.mailto;9 10 import java.io.IOException ;11 import java.net.URL ;12 import java.net.URLConnection ;13 import java.net.URLStreamHandler ;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 28 {29 30 /* (non-Javadoc)31 * @see java.net.URLStreamHandler#openConnection(java.net.URL)32 */33 protected URLConnection openConnection(URL arg0) throws IOException 34 {35 // TODO Auto-generated method stub36 return null;37 }38 39 }40