Package org.eclipse.jetty.io.ssl
Class SslClientConnectionFactory.HTTPSHandshakeListener
- java.lang.Object
-
- org.eclipse.jetty.io.ssl.SslClientConnectionFactory.HTTPSHandshakeListener
-
- All Implemented Interfaces:
java.util.EventListener
,SslHandshakeListener
- Enclosing class:
- SslClientConnectionFactory
private class SslClientConnectionFactory.HTTPSHandshakeListener extends java.lang.Object implements SslHandshakeListener
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.io.ssl.SslHandshakeListener
SslHandshakeListener.Event
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.Map<java.lang.String,java.lang.Object>
context
-
Constructor Summary
Constructors Modifier Constructor Description private
HTTPSHandshakeListener(java.util.Map<java.lang.String,java.lang.Object> context)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
handshakeSucceeded(SslHandshakeListener.Event event)
Callback method invoked when the TLS handshake succeeds.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.eclipse.jetty.io.ssl.SslHandshakeListener
handshakeFailed
-
-
-
-
Method Detail
-
handshakeSucceeded
public void handshakeSucceeded(SslHandshakeListener.Event event) throws javax.net.ssl.SSLException
Description copied from interface:SslHandshakeListener
Callback method invoked when the TLS handshake succeeds.
- Specified by:
handshakeSucceeded
in interfaceSslHandshakeListener
- Parameters:
event
- the event object carrying information about the TLS handshake event- Throws:
javax.net.ssl.SSLException
- if any error happen during handshake
-
-