Methods Summary |
---|
public abstract java.lang.String | getCipherSuite()Gets the cipher suite string on the connection which is originally used
to retrieve the network resource.
|
public abstract java.util.List | getLocalCertificateChain()Gets the local certificate chain. When the original connection retrieved
the resource data, this certificate chain was sent to the server during
handshaking process. This method only takes effect when certificate-based
cipher suite is enabled.
|
public abstract java.security.Principal | getLocalPrincipal()Gets the local 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.
|
public abstract java.security.Principal | getPeerPrincipal()Gets the server's principle. When the original connection retrieved
network resource, the principle was established when defining the
session.
|
public abstract java.util.List | getServerCertificateChain()Gets the cached server's certificate chain. 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 cipher suite is enabled. Otherwise, it throws an
{@code SSLPeerUnverifiedException}.
|