public abstract class SecureCacheResponse extends CacheResponse
Constructor and Description |
---|
SecureCacheResponse() |
Modifier and Type | Method and Description |
---|---|
abstract String |
getCipherSuite()
返回在检索网络资源的原始连接上使用的加密套件。
|
abstract List<Certificate> |
getLocalCertificateChain()
返回在握手检索网络资源的原始连接期间发送到服务器的证书链。
|
abstract Principal |
getLocalPrincipal()
返回在检索网络资源的原始连接中握手期间发送到服务器的主体。
|
abstract Principal |
getPeerPrincipal()
返回作为在检索网络资源的原始连接期间定义会话的一部分而建立的服务器的主体。
|
abstract List<Certificate> |
getServerCertificateChain()
返回服务器的证书链,它是作为在检索网络资源的原始连接中从缓存定义会话的一部分而建立的。
|
getBody, getHeaders
public abstract String getCipherSuite()
public abstract List<Certificate> getLocalCertificateChain()
getLocalPrincipal()
public abstract List<Certificate> getServerCertificateChain() throws SSLPeerUnverifiedException
SSLPeerUnverifiedException
- 如果对等体未被验证。
getPeerPrincipal()
public abstract Principal getPeerPrincipal() throws SSLPeerUnverifiedException
SSLPeerUnverifiedException
- 如果对等体未被验证。
getServerCertificateChain()
,
getLocalPrincipal()
public abstract Principal getLocalPrincipal()
getLocalCertificateChain()
,
getPeerPrincipal()
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.