All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.fmj.media.protocol.http.DataSource Maven / Gradle / Ivy

There is a newer version: 1.0.2-jitsi
Show newest version
package net.sf.fmj.media.protocol.http;

import java.net.*;

import net.sf.fmj.media.protocol.*;

/**
 * HTTP protocol handler DataSource. TODO: move http-specific code from
 * URLDataSource to here.
 *
 * @author Ken Larson
 *
 */
public class DataSource extends URLDataSource
{
    public DataSource()
    {
        super();
    }

    public DataSource(URL url)
    {
        super(url);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy