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 SSLEngine objects.

    Typically implemented by SslContextFactory.Client to support more flexible creation of SSLEngine instances.

    • Method Summary

      All Methods Instance Methods Abstract Methods Deprecated Methods 
      Modifier and Type Method Description
      javax.net.ssl.SSLEngine newSslEngine​(java.lang.String host, int port, java.util.Map<java.lang.String,​java.lang.Object> context)
      Deprecated.
      Creates a new SSLEngine instance for the given peer host and port, and with the given context to help the creation of the SSLEngine.
    • Method Detail

      • newSslEngine

        javax.net.ssl.SSLEngine newSslEngine​(java.lang.String host,
                                             int port,
                                             java.util.Map<java.lang.String,​java.lang.Object> context)
        Deprecated.

        Creates a new SSLEngine instance for the given peer host and port, and with the given context to help the creation of the SSLEngine.

        Parameters:
        host - the peer host
        port - the peer port
        context - the ClientConnectionFactory context
        Returns:
        a new SSLEngine instance