List of usage examples for org.apache.http.conn.scheme SchemeLayeredSocketFactory interface-usage
From source file com.nebkat.junglist.bot.http.EasySSLSocketFactory.java
public class EasySSLSocketFactory implements SchemeLayeredSocketFactory { private SSLContext sslcontext = null; private static SSLContext createEasySSLContext() throws IOException { try {
From source file org.apache.maven.wagon.providers.http.ConfigurableSSLSocketFactoryDecorator.java
/** * @since 2.4 */ class ConfigurableSSLSocketFactoryDecorator implements SchemeLayeredSocketFactory { private final SchemeLayeredSocketFactory sslSocketFactory;
From source file org.apache.jmeter.protocol.http.sampler.LazySchemeSocketFactory.java
/** * Lazy SchemeSocketFactory that lazily initializes HTTPS Socket Factory * @since 3.0 */ public final class LazySchemeSocketFactory implements SchemeLayeredSocketFactory { private static final Logger LOG = LoggingManager.getLoggerForClass();
From source file ucar.httpservices.CustomSSLProtocolSocketFactory.java
public class CustomSSLProtocolSocketFactory implements SchemeLayeredSocketFactory { private SSLContext sslcontext = null; private SSLContext createSSLContext(HttpParams params) throws IOException { if (this.sslcontext == null) try {
From source file com.sos.VirtualFileSystem.HTTP.EasySSLSocketFactory.java
/**
* This socket factory will create ssl socket that accepts self signed
* certificate
*
* @author re (diverse Anpassungen fr httpclient 4.2.x)
* @author olamy
From source file orca.ektorp.client.ContextualSSLSocketFactory.java
/** * * @author claris * TODO: See DecorateTrustManager below. It needs to be uncomment. Eventually I will have to compile this class against the source code of HTTP-component. */ @SuppressWarnings("deprecation")