Handler.java |
/* * Copyright (C) The Apache Software Foundation. All rights reserved. * * This software is published under the terms of the Apache Software License * version 1.1, a copy of which has been included with this distribution in * the docs/licenses/apache-1.1.txt file. */ package org.jboss.net.axis.transport.mailto; import java.io.IOException; import java.net.URL; import java.net.URLConnection; import java.net.URLStreamHandler; /** * <dl> * <dt><b>Title: </b><dd></dd> * <p> * <dt><b>Description: </b><dd></dd> * <p> * <dt><b>Copyright: </b><dd>Copyright (c) 2004</dd> * <dt><b>Company: </b><dd>Green River Computing Services</dd> * </dl> * @author <a href="mailto:jasone@greenrivercomputing.com">Jason Essington</a> * @version $Revision: 1.1.6.1 $ */ public class Handler extends URLStreamHandler { /* (non-Javadoc) * @see java.net.URLStreamHandler#openConnection(java.net.URL) */ protected URLConnection openConnection(URL arg0) throws IOException { // TODO Auto-generated method stub return null; } }
Handler.java |