Class ConfigurableSSLServerSocketFactory

java.lang.Object
javax.net.ServerSocketFactory
ch.qos.logback.core.net.ssl.ConfigurableSSLServerSocketFactory

public class ConfigurableSSLServerSocketFactory extends ServerSocketFactory
An SSLServerSocketFactory that configures SSL parameters (those specified in SSLParametersConfiguration) on each newly created socket.

When any of this factory's createServerSocket methods are invoked, it calls on a delegate SSLServerSocketFactory to create the socket, and then sets the SSL parameters of the socket (using the provided configuration) before returning the socket to the caller.

Author:
Carl Harris