Package org.mule.transport.soap.axis.transport.pop3

Source Code of org.mule.transport.soap.axis.transport.pop3.Handler

/*
* Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/
package org.mule.transport.soap.axis.transport.pop3;

import org.mule.transport.soap.axis.transport.VoidURLConnection;

import java.net.URL;
import java.net.URLConnection;

/**
* A Dummy Url handler for handling pop3. This is needed becuase Axis uses
* urlStreamHandlers to parse non-http urls.
*/
public class Handler extends java.net.URLStreamHandler
{
    @Override
    protected URLConnection openConnection(URL url)
    {
        return new VoidURLConnection(url);
    }
}
TOP

Related Classes of org.mule.transport.soap.axis.transport.pop3.Handler

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.