Example usage for java.net URLConnection subclass-usage

List of usage examples for java.net URLConnection subclass-usage

Introduction

In this page you can find the example usage for java.net URLConnection subclass-usage.

Usage

From source file org.apache.servicemix.jbi.deployer.handler.Connection.java

/**
 * A URL connection to handle the JBI to OSGi transformation
 * using a URL.
 */
public class Connection extends URLConnection {

From source file org.wso2.carbon.ui.CarbonConnection.java

/**
 *
 */
public class CarbonConnection extends URLConnection {

    private static final Log log = LogFactory.getLog(CarbonConnection.class);

From source file org.xhtmlrenderer.protocols.data.DataURLConnection.java

public class DataURLConnection extends URLConnection {

    private static final Logger LOGGER = LoggerFactory.getLogger(DataURLConnection.class);

    private final Map<String, String> _headers = new HashMap<String, String>();
    private byte[] _data;

From source file de.axelfaust.alfresco.nashorn.repo.loaders.CallerProvidedURLConnection.java

/**
 *
 * @author Axel Faust
 */
public class CallerProvidedURLConnection extends URLConnection {

From source file com.wallabystreet.kinjo.common.transport.protocol.jxta.JXTAURLConnection.java

/**
 * This class provides a basic implementation of the <code>URLConnection</code>
 * type for the <a href="http://www.jxta.org">JXTA</a> network.
 * <p />
 * The connection is established via the {@link #connect()} method, which sets
 * up a JXTA bidirectional, reliable communication pipe to a JXTA peer. The

From source file com.jaspersoft.jasperserver.api.engine.jasperreports.util.repo.RepositoryConnection.java

/**
 * @author Lucian Chirita (lucianc@users.sourceforge.net)
 * @version $Id: RepositoryConnection.java 47331 2014-07-18 09:13:06Z kklein $
 */
public class RepositoryConnection extends URLConnection {
    private static final Log log = LogFactory.getLog(RepositoryConnection.class);

From source file org.paxle.crawler.ftp.impl.FtpUrlConnection.java

public class FtpUrlConnection extends URLConnection {
    private static final String DIR_MIMETYPE = "text/html";

    private Log logger = LogFactory.getLog(this.getClass());
    private FTPClient client = null;
    private int reply;

From source file org.ops4j.pax.url.mvn.internal.Connection.java

/**
 * An URLConnextion that supports mvn: protocol.<br/>
 * Syntax:<br>
 * mvn:[repository_url!]groupId/artifactId[/version[/type]]<br/>
 * where:<br/>
 * - repository_url = an url that points to a maven 2 repository; optional, if not sepecified the repositories are

From source file org.ops4j.pax.url.maven.internal.Connection.java

/**
 * An URLConnextion that supports maven: protocol.
 *
 * @author Alin Dreghiciu (adreghiciu@gmail.com)
 * @since 0.5.0, March 22, 2009
 */

From source file org.pentaho.webpackage.deployer.archive.impl.WebPackageURLConnection.java

public class WebPackageURLConnection extends java.net.URLConnection {
    public static final String URL_PROTOCOL = "pentaho-webpackage";
    public static final String PACKAGE_JSON = "package.json";

    private static final ExecutorService EXECUTOR = Executors.newFixedThreadPool(5, r -> {
        Thread thread = Executors.defaultThreadFactory().newThread(r);