|
Préférences
Moteurs de recherche
|
||||||||||||||||||||||||||||||
| JavaTM 2 Platform Std. Ed. v1.6.0
javax.net.ssl
|
|||||||||||||||||||||||||||||||
| Field Summary |
|---|
| Fields inherited from class java.util.EventObject |
|---|
source |
| Constructor Summary | |
|---|---|
HandshakeCompletedEvent(SSLSocket sock,
SSLSession s)
Constructs a new HandshakeCompletedEvent. |
|
| Method Summary | |
|---|---|
String |
getCipherSuite()
Returns the cipher suite in use by the session which was produced by the handshake. |
Certificate[] |
getLocalCertificates()
Returns the certificate(s) that were sent to the peer during handshaking. |
Principal |
getLocalPrincipal()
Returns the principal that was sent to the peer during handshaking. |
X509Certificate[] |
getPeerCertificateChain()
Returns the identity of the peer which was identified as part of defining the session. |
Certificate[] |
getPeerCertificates()
Returns the identity of the peer which was established as part of defining the session. |
Principal |
getPeerPrincipal()
Returns the identity of the peer which was established as part of defining the session. |
SSLSession |
getSession()
Returns the session that triggered this event. |
SSLSocket |
getSocket()
Returns the socket which is the source of this event. |
| Methods inherited from class java.util.EventObject |
|---|
getSource, toString |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public HandshakeCompletedEvent(SSLSocket sock, SSLSession s)
sock - the SSLSocket acting as the source of the events - the SSLSession this event is associated with| Method Detail |
|---|
public SSLSession getSession()
SSLSession for this handshakepublic String getCipherSuite()
public Certificate[] getLocalCertificates()
getLocalPrincipal()public Certificate[] getPeerCertificates() throws SSLPeerUnverifiedException
SSLPeerUnverifiedException - if the peer is not verified.getPeerPrincipal()public X509Certificate[] getPeerCertificateChain() throws SSLPeerUnverifiedException
Note: this method exists for compatibility with previous
releases. New applications should use
getPeerCertificates() instead.
X509Certificate format).
SSLPeerUnverifiedException - if the peer is not verified.getPeerPrincipal()public Principal getPeerPrincipal() throws SSLPeerUnverifiedException
SSLPeerUnverifiedException - if the peer's identity has not
been verifiedgetPeerCertificates(),
getLocalPrincipal()public Principal getLocalPrincipal()
getLocalCertificates(),
getPeerPrincipal()public SSLSocket getSocket()