| Package | Description |
|---|---|
| java.net |
Provides the classes for implementing networking applications.
|
| javax.net.ssl |
Provides classes for the secure socket package.
|
| Modifier and Type | Method and Description |
|---|---|
abstract Principal |
SecureCacheResponse.getPeerPrincipal()
Returns the server's principal which was established as part of defining the session during the original connection that retrieved the network resource.
|
abstract List |
SecureCacheResponse.getServerCertificateChain()
Returns the server's certificate chain, which was established as part of defining the session in the original connection that retrieved the network resource, from cache.
|
| Modifier and Type | Method and Description |
|---|---|
X509Certificate |
HandshakeCompletedEvent.getPeerCertificateChain()
Returns the identity of the peer which was identified as part of defining the session.
|
X509Certificate |
SSLSession.getPeerCertificateChain()
Returns the identity of the peer which was identified as part of defining the session.
|
Certificate |
HandshakeCompletedEvent.getPeerCertificates()
Returns the identity of the peer which was established as part of defining the session.
|
Certificate |
SSLSession.getPeerCertificates()
Returns the identity of the peer which was established as part of defining the session.
|
Principal |
HandshakeCompletedEvent.getPeerPrincipal()
Returns the identity of the peer which was established as part of defining the session.
|
Principal |
HttpsURLConnection.getPeerPrincipal()
Returns the server's principal which was established as part of defining the session.
|
Principal |
SSLSession.getPeerPrincipal()
Returns the identity of the peer which was established as part of defining the session.
|
abstract Certificate |
HttpsURLConnection.getServerCertificates()
Returns the server's certificate chain which was established as part of defining the session.
|