Package org.eclipse.jetty.io.ssl
Interface SslHandshakeListener
- All Superinterfaces:
EventListener
Deprecated.
The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.
Implementations of this interface are notified of TLS handshake events.
Similar to HandshakeCompletedListener, but for SSLEngine.
Typical usage if to add instances of this class as beans to a server connector, or to a client connector.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic classDeprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported. -
Method Summary
Modifier and TypeMethodDescriptiondefault voidhandshakeFailed(SslHandshakeListener.Event event, Throwable failure) Deprecated.Callback method invoked when the TLS handshake fails.default voidDeprecated.Callback method invoked when the TLS handshake succeeds.
-
Method Details
-
handshakeSucceeded
Deprecated.Callback method invoked when the TLS handshake succeeds.
- Parameters:
event- the event object carrying information about the TLS handshake event- Throws:
SSLException- if any error happen during handshake
-
handshakeFailed
Deprecated.Callback method invoked when the TLS handshake fails.
- Parameters:
event- the event object carrying information about the TLS handshake eventfailure- the failure that caused the TLS handshake to fail
-