HttpClientConnectionManager.@Deprecated public interface HttpRoutedConnection extends org.apache.http.HttpInetConnection
| Modifier and Type | Method and Description | 
|---|---|
| HttpRoute | getRoute()Deprecated.  Obtains the current route of this connection. | 
| SSLSession | getSSLSession()Deprecated.  Obtains the SSL session of the underlying connection, if any. | 
| boolean | isSecure()Deprecated.  Indicates whether this connection is secure. | 
boolean isSecure()
true if this connection is secure,
          false otherwiseHttpRoute getRoute()
null if not connectedSSLSession getSSLSession()
SSLSocket, the SSL session of
 that socket is obtained. This is a potentially blocking operation.
 
 Note: Whether the underlying socket is an SSL socket
 can not necessarily be determined via isSecure().
 Plain sockets may be considered secure, for example if they are
 connected to a known host in the same network segment.
 On the other hand, SSL sockets may be considered insecure,
 for example depending on the chosen cipher suite.
 
null otherwiseCopyright © 1999–2022 The Apache Software Foundation. All rights reserved.