Uses of Interface
org.apache.http.conn.scheme.SocketFactory

Packages that use SocketFactory
org.apache.http.conn The client-side connection management and handling API that provides interfaces and implementations for opening and managing client side HTTP connections. 
org.apache.http.conn.scheme Scheme class represents a protocol scheme such as "http" or "https" and contains a number of protocol properties such as the default port and the socket factory to be used to creating Sockets for the given protocol 
org.apache.http.conn.ssl TLS/SSL specific API. 
 

Uses of SocketFactory in org.apache.http.conn
 

Classes in org.apache.http.conn that implement SocketFactory
 class MultihomePlainSocketFactory
          Deprecated. (4.1) Do not use. For multihome support socket factories must implement SchemeSocketFactory interface.
 

Uses of SocketFactory in org.apache.http.conn.scheme
 

Subinterfaces of SocketFactory in org.apache.http.conn.scheme
 interface LayeredSocketFactory
          Deprecated. (4.1) use SchemeSocketFactory
 

Classes in org.apache.http.conn.scheme that implement SocketFactory
 class PlainSocketFactory
          The default class for creating plain (unencrypted) sockets.
 

Methods in org.apache.http.conn.scheme that return SocketFactory
 SocketFactory Scheme.getSocketFactory()
          Deprecated. (4.1) Use Scheme.getSchemeSocketFactory()
 

Constructors in org.apache.http.conn.scheme with parameters of type SocketFactory
Scheme(String name, SocketFactory factory, int port)
          Deprecated. (4.1) Use Scheme.Scheme(String, int, SchemeSocketFactory)
 

Uses of SocketFactory in org.apache.http.conn.ssl
 

Classes in org.apache.http.conn.ssl that implement SocketFactory
 class SSLSocketFactory
          Layered socket factory for TLS/SSL connections.
 



Copyright © 1999-2012 The Apache Software Foundation. All Rights Reserved.