KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > net > ssl > HandshakeCompletedEvent

javax.net.ssl
Class HandshakeCompletedEvent

java.lang.Object
  extended by java.util.EventObject
      extended by javax.net.ssl.HandshakeCompletedEvent
All Implemented Interfaces:
Serializable
See Also:
Top Examples, Source Code, SSLSocket, HandshakeCompletedListener, SSLSession

public String getCipherSuite()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Certificate[] getLocalCertificates()
See Also:
getLocalPrincipal()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Principal getLocalPrincipal()
See Also:
getPeerPrincipal(), getLocalCertificates()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public X509Certificate[] getPeerCertificateChain()
                                          throws SSLPeerUnverifiedException
See Also:
getPeerPrincipal(), getPeerCertificates()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Certificate[] getPeerCertificates()
                                  throws SSLPeerUnverifiedException
See Also:
getPeerPrincipal()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public Principal getPeerPrincipal()
                           throws SSLPeerUnverifiedException
See Also:
getLocalPrincipal(), getPeerCertificates()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public SSLSession getSession()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public SSLSocket getSocket()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public HandshakeCompletedEvent(SSLSocket sock,
                               SSLSession s)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags