Example usage for org.apache.commons.httpclient.protocol ProtocolSocketFactory interface-usage

List of usage examples for org.apache.commons.httpclient.protocol ProtocolSocketFactory interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.httpclient.protocol ProtocolSocketFactory interface-usage.

Usage

From source file kr.co.koscom.openapitest.MySSLSocketFactory.java

/**
 * to bypass self-signed certificate
 * 
 *
 */
public class MySSLSocketFactory implements ProtocolSocketFactory {

From source file com.jivesoftware.os.jive.utils.http.client.CustomSecureProtocolSocketFactory.java

public class CustomSecureProtocolSocketFactory implements ProtocolSocketFactory {

    private final SSLSocketFactory sslSocketFactory;

    public CustomSecureProtocolSocketFactory(SSLSocketFactory sslSocketFactory) {
        this.sslSocketFactory = sslSocketFactory;

From source file org.eclipse.mylyn.internal.commons.net.PollingProtocolSocketFactory.java

/**
 * @author Steffen Pingel
 */
public class PollingProtocolSocketFactory implements ProtocolSocketFactory {

    private final static SocketFactory factory = SocketFactory.getDefault();

From source file io.fabric8.gateway.servlet.support.NonBindingSocketFactory.java

/**
 * A @{link ProtocolSocketFactory} implementation that does not bind a socket.
 * <p>
 *
 * The reason for this {@link ProtocolSocketFactory} implementation is that for ProxyServlet we don't need to
 * bind to a local address and port. This binding can cause issue in PaaS environments where restrictions apply.

From source file com.beyondjservlet.gateway.servlet.support.NonBindingSocketFactory.java

/**
 * A @{link ProtocolSocketFactory} implementation that does not bind a socket.
 * <p>
 *
 * The reason for this {@link ProtocolSocketFactory} implementation is that for ProxyServlet we don't need to
 * bind to a local address and port. This binding can cause issue in PaaS environments where restrictions apply.

From source file com.zimbra.common.net.ProtocolSocketFactoryWrapper.java

class ProtocolSocketFactoryWrapper implements ProtocolSocketFactory {
    private final SocketFactory factory;

    ProtocolSocketFactoryWrapper(SocketFactory factory) {
        this.factory = factory;
    }

From source file org.globus.axis.transport.commons.CommonsSocketFactory.java

public class CommonsSocketFactory implements ProtocolSocketFactory {

    private SocketFactory defaultSocketFactory = SocketFactory.getDefault();

    public Socket createSocket(String host, int port, InetAddress localAddress, int localPort)
            throws IOException, UnknownHostException {

From source file com.cloupia.feature.nimble.http.MySSLSocketFactory.java

/**
 * to bypass self-signed certificate
 * 
 *
 */
public class MySSLSocketFactory implements ProtocolSocketFactory {

From source file org.candlepin.client.AbstractSLLProtocolSocketFactory.java

/**
 * AbstractSLLProtocolSocketFactory
 */
public abstract class AbstractSLLProtocolSocketFactory implements ProtocolSocketFactory {

    public Socket createSocket(String host, int port, InetAddress clientHost, int localPort)

From source file org.xdi.util.EasySSLProtocolSocketFactory.java

/**
 * <p>
 * EasySSLProtocolSocketFactory can be used to creats SSL {@link Socket}s that
 * accept self-signed certificates.
 * </p>
 * <p>