Class SSLHandshakeCompletedEvent

java.lang.Object
java.util.EventObject
org.mozilla.jss.ssl.SSLHandshakeCompletedEvent
All Implemented Interfaces:
Serializable

public class SSLHandshakeCompletedEvent extends EventObject
This class represents the event telling you a handshake operation is complete.
See Also:
  • Field Details

  • Constructor Details

    • SSLHandshakeCompletedEvent

      public SSLHandshakeCompletedEvent(SSLSocket socket)
    • SSLHandshakeCompletedEvent

      public SSLHandshakeCompletedEvent(JSSEngine engine)
  • Method Details

    • getStatus

      public SSLSecurityStatus getStatus() throws SocketException
      Get security information about this socket, including cert data; null if on a SSLEngine.
      Throws:
      SocketException
    • getSocket

      public SSLSocket getSocket()
      Get socket on which the event occurred; null if on a SSLEngine.
    • getEngine

      public JSSEngine getEngine()
      Get engine on which the event occurred; null if on a SSLSocket.