Package ch.qos.logback.core.net.ssl
Contains classes that create and configure a JSSE SSLContext needed for secure transport of logging events by SSLSocketAppender.
The central class in this package is SSLConfiguration, which provides a factory method for the SSLContext and SSLParameters objects. Other classes are factory beans, which are designed to hold the various configurable properties of the components used in creating an SSLContext, and to create the relevant component when needed during the assembly of the context.
-
Interface Summary Interface Description SSL Various constants used by the SSL implementation.SSLComponent A interface used to identify components that have an SSL configuration.SSLConfigurable An object that has configurable SSL parameters. -
Class Summary Class Description ConfigurableSSLServerSocketFactory AnSSLServerSocketFactory
that configures SSL parameters (those specified in {@link SSLParametersConfiguration) on each newly created socket.When any of this factory's {@code 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.ConfigurableSSLSocketFactory AnSSLSocketFactory
that configures SSL parameters (those covered bySSLParameters
) on each newly created socket.KeyManagerFactoryFactoryBean A factory bean for a JSSEKeyManagerFactory
.KeyStoreFactoryBean A factory bean for a JCAKeyStore
.SecureRandomFactoryBean A factory bean for a JCASecureRandom
generator.SSLConfigurableServerSocket AnSSLConfigurable
wrapper for anSSLServerSocket
.SSLConfigurableSocket AnSSLConfigurable
wrapper for anSSLSocket
.SSLConfiguration A configuration for anSSLContext
.SSLContextFactoryBean A factory bean for a JSSESSLContext
.SSLNestedComponentRegistryRules Nested component registry rules forSSLConfiguration
and its components.SSLParametersConfiguration A configuration of SSL parameters for anSSLEngine
.TrustManagerFactoryFactoryBean A factory bean for a JSSETrustManagerFactory
.