| java.lang.Object | ||
| ↳ | java.net.CacheResponse | |
| ↳ | java.net.SecureCacheResponse | |
A secure cache response, which is orignally retrieved through secure ways.
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Constructor method
| |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Gets the cipher suite string on the connection which is originally used
to retrieve the network resource.
| |||||||||||
Gets local certificate chain.
| |||||||||||
Gets the
Principle that the original connection sent to
the server. | |||||||||||
Gets the server's
Principle. | |||||||||||
Gets server's certificate chain from cache.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class java.net.CacheResponse
| |||||||||||
From class java.lang.Object
| |||||||||||
Constructor method
Gets the cipher suite string on the connection which is originally used to retrieve the network resource.
Gets local certificate chain. When the original connection retrieved the resource data, certificate chain was sent to the server during handshaking process. This method only takes effect when certificate-based cipher suite is enabled.
List of
Certificate. If no certificate chain was sent,
the method returns null.
Gets the Principle that the original connection sent to
the server. When the original connection fetched the network resource,
the Principle was sent to the server during handshaking
process.
principal sent to the server. Returns an
X500Principal for X509-based cipher suites. If no
principal was sent, it returns null.
Gets the server's Principle. When the original connection
retrieved network resource, the principle was established when defining
the session.
Principal represents the server's principal.| SSLPeerUnverifiedException | If the peer is unverified. |
|---|
Gets server's certificate chain from cache. As part of defining the
session, the certificate chain was established when the original
connection retrieved network resource. This method can only be invoked
when certificated-based cypher suites is enable. Otherwise, it throws an
SSLPeerUnverifiedException.
List of Certificate.| SSLPeerUnverifiedException | If the peer is unverified. |
|---|