Package org.eclipse.jetty.io.ssl
Interface SslClientConnectionFactory.SslEngineFactory
-
- Enclosing class:
- SslClientConnectionFactory
@Deprecated(since="2021-05-27") public static interface SslClientConnectionFactory.SslEngineFactory
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.A factory for
SSLEngineobjects.Typically implemented by
SslContextFactory.Clientto support more flexible creation of SSLEngine instances.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description SSLEnginenewSslEngine(String host, int port, Map<String,Object> context)Deprecated.Creates a newSSLEngineinstance for the given peer host and port, and with the given context to help the creation of the SSLEngine.
-
-
-
Method Detail
-
newSslEngine
SSLEngine newSslEngine(String host, int port, Map<String,Object> context)
Deprecated.Creates a new
SSLEngineinstance for the given peer host and port, and with the given context to help the creation of the SSLEngine.- Parameters:
host- the peer hostport- the peer portcontext- theClientConnectionFactorycontext- Returns:
- a new SSLEngine instance
-
-