Package org.mozilla.jss.ssl
Class SSLHandshakeCompletedEvent
- java.lang.Object
-
- java.util.EventObject
-
- org.mozilla.jss.ssl.SSLHandshakeCompletedEvent
-
- All Implemented Interfaces:
java.io.Serializable
public class SSLHandshakeCompletedEvent extends java.util.EventObject
This class represents the event telling you a handshake operation is complete.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SSLHandshakeCompletedEvent(JSSEngine engine)
SSLHandshakeCompletedEvent(SSLSocket socket)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JSSEngine
getEngine()
Get engine on which the event occurred; null if on a SSLSocket.SSLSocket
getSocket()
Get socket on which the event occurred; null if on a SSLEngine.SSLSecurityStatus
getStatus()
Get security information about this socket, including cert data; null if on a SSLEngine.
-
-
-
Method Detail
-
getStatus
public SSLSecurityStatus getStatus() throws java.net.SocketException
Get security information about this socket, including cert data; null if on a SSLEngine.- Throws:
java.net.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.
-
-