[HTTPCORE-14] Consider decoupling HttpHost and Scheme and moving Scheme, SocketFactory and SecureSocketFactory to HttpConn
Changelog: ---------- * Moved Scheme, SocketFactory, SecureSocketFactory and related classes to HttpConn git-svn-id: https://svn.apache.org/repos/asf/jakarta/httpcomponents/httpclient/trunk@451422 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
61f0758cc0
commit
5367b431aa
|
@ -27,7 +27,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
package org.apache.http;
|
||||
package org.apache.http.conn;
|
||||
|
||||
import java.io.InterruptedIOException;
|
||||
|
||||
|
|
|
@ -34,7 +34,6 @@ import java.net.InetAddress;
|
|||
import java.net.Socket;
|
||||
import java.net.UnknownHostException;
|
||||
|
||||
import org.apache.http.ConnectTimeoutException;
|
||||
import org.apache.http.params.HttpParams;
|
||||
|
||||
/**
|
||||
|
|
|
@ -48,7 +48,7 @@ import javax.net.ssl.SSLContext;
|
|||
import javax.net.ssl.TrustManager;
|
||||
import javax.net.ssl.TrustManagerFactory;
|
||||
|
||||
import org.apache.http.ConnectTimeoutException;
|
||||
import org.apache.http.conn.ConnectTimeoutException;
|
||||
import org.apache.http.conn.SecureSocketFactory;
|
||||
import org.apache.http.params.HttpConnectionParams;
|
||||
import org.apache.http.params.HttpParams;
|
||||
|
|
|
@ -27,10 +27,9 @@
|
|||
*
|
||||
*/
|
||||
|
||||
package org.apache.http;
|
||||
package org.apache.http.conn;
|
||||
|
||||
import org.apache.http.impl.io.PlainSocketFactory;
|
||||
import org.apache.http.impl.io.SSLSocketFactory;
|
||||
import org.apache.http.conn.ssl.SSLSocketFactory;
|
||||
|
||||
import junit.framework.Test;
|
||||
import junit.framework.TestCase;
|
||||
|
|
Loading…
Reference in New Issue