Interface SSLSessionInitializer


public interface SSLSessionInitializer
Callback interface that can be used to customize TLS/SSL session initialization.
Since:
4.2
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    initialize(NamedEndpoint endpoint, SSLEngine sslEngine)
    Triggered when the SSL connection is being initialized.
  • Method Details

    • initialize

      void initialize(NamedEndpoint endpoint, SSLEngine sslEngine)
      Triggered when the SSL connection is being initialized. Custom handlers can use this callback to customize properties of the SSLEngine used to establish the SSL session.
      Parameters:
      endpoint - the endpoint name for a client side session or null for a server side session.
      sslEngine - the SSL engine.