Example usage for javax.net.ssl SSLSocketFactory subclass-usage

List of usage examples for javax.net.ssl SSLSocketFactory subclass-usage

Introduction

In this page you can find the example usage for javax.net.ssl SSLSocketFactory subclass-usage.

Usage

From source file org.mule.api.security.tls.TlsPropertiesSocketFactory.java

/**
 * A socket factory that is configured via Properties, using a {@link TlsConfiguration}
 * that has been stored via {@link TlsPropertiesMapper}.
 */
public class TlsPropertiesSocketFactory extends SSLSocketFactory {

From source file org.apache.manifoldcf.connectorcommon.common.InterruptibleSocketFactory.java

/** SSL Socket factory which wraps another socket factory but allows timeout on socket
* creation.
*/
public class InterruptibleSocketFactory extends javax.net.ssl.SSLSocketFactory {
    protected final javax.net.ssl.SSLSocketFactory wrappedFactory;
    protected final long connectTimeoutMilliseconds;

From source file org.apache.manifoldcf.core.common.InterruptibleSocketFactory.java

/** SSL Socket factory which wraps another socket factory but allows timeout on socket
* creation.
*/
public class InterruptibleSocketFactory extends javax.net.ssl.SSLSocketFactory {
    protected final javax.net.ssl.SSLSocketFactory wrappedFactory;
    protected final long connectTimeoutMilliseconds;

From source file org.mariotaku.twidere.util.net.HostResolvedSSLSocketFactory.java

/**
 * Created by mariotaku on 15/1/31.
 */
public class HostResolvedSSLSocketFactory extends SSLSocketFactory {

    private final SSLSocketFactory defaultFactory;

From source file org.jivesoftware.community.util.ssl.DummySSLSocketFactory.java

public class DummySSLSocketFactory extends SSLSocketFactory implements SecureProtocolSocketFactory {
    private static final Logger Log = LoggerFactory.getLogger(DummySSLSocketFactory.class);
    private SSLSocketFactory factory;

    private static class DummyTrustManager implements X509TrustManager {

From source file org.apache.camel.component.mail.security.DummySSLSocketFactory.java

/**
 * DummySSLSocketFactory for testing with SSL - <b>NOT SECURE</b>.
 * <p/>
 * This factory is only to be used for testing purposes.
 */
public class DummySSLSocketFactory extends SSLSocketFactory {

From source file org.apache.jmeter.protocol.smtp.sampler.protocol.LocalTrustStoreSSLSocketFactory.java

/**
 * This class implements an SSLSocketFactory which supports a local truststore.
 */
public class LocalTrustStoreSSLSocketFactory extends SSLSocketFactory {

    private final SSLSocketFactory factory;

From source file org.wso2.carbon.apimgt.core.util.AMSSLSocketFactory.java

/**
 * SSLSocketFactory implementation
 */
public final class AMSSLSocketFactory extends SSLSocketFactory {

    private static final Map<String, SSLSocketFactory> sslSocketFactories = new HashMap<>();

From source file be.fedict.eid.idp.sp.protocol.openid.OpenIDSSLSocketFactory.java

/**
 * OpenID SSL Socket Factory for installing a specified SSL TrustManager.
 * 
 * @author Frank Cornelis
 */
public class OpenIDSSLSocketFactory extends SSLSocketFactory {

From source file org.wso2.carbon.apimgt.rest.integration.tests.util.AMIntegrationSSLSocketFactory.java

public final class AMIntegrationSSLSocketFactory extends SSLSocketFactory {

    private static final Map<String, SSLSocketFactory> sslSocketFactories = new HashMap<>();
    private final SSLSocketFactory socketFactory;

    private AMIntegrationSSLSocketFactory(String certAlias) throws AMIntegrationTestException {