Methods Summary |
---|
public java.lang.String | getCipherSuite()Returns the name of the cipher suite negotiated during this handshake.
return session.getCipherSuite();
|
public java.security.cert.Certificate[] | getLocalCertificates()Returns the list of local certificates used during the handshake. These
certificates were sent to the peer.
return session.getLocalCertificates();
|
public java.security.Principal | getLocalPrincipal()Returns the {@code Principal} used to identify during the handshake.
return session.getLocalPrincipal();
|
public javax.security.cert.X509Certificate[] | getPeerCertificateChain()Returns the list of certificates identifying the peer. The peer's
identity certificate is followed by the validated certificate authority
certificates.
Replaced by: {@link #getPeerCertificates()}
return session.getPeerCertificateChain();
|
public java.security.cert.Certificate[] | getPeerCertificates()Return the list of certificates identifying the peer during the
handshake.
return session.getPeerCertificates();
|
public java.security.Principal | getPeerPrincipal()Returns the {@code Principal} identifying the peer.
return session.getPeerPrincipal();
|
public javax.net.ssl.SSLSession | getSession()Returns the SSL session associated with this event.
return session;
|
public javax.net.ssl.SSLSocket | getSocket()Returns the SSL socket that produced this event.
return (SSLSocket)this.source;
|