Uses of Class
org.kiwiproject.config.TlsContextConfiguration.TlsContextConfigurationBuilder
Packages that use TlsContextConfiguration.TlsContextConfigurationBuilder
-
Uses of TlsContextConfiguration.TlsContextConfigurationBuilder in org.kiwiproject.config
Methods in org.kiwiproject.config that return TlsContextConfiguration.TlsContextConfigurationBuilderModifier and TypeMethodDescriptionTlsContextConfiguration.builder()The alias of a specific client certificate to present when authenticating.TlsContextConfiguration.TlsContextConfigurationBuilder.disableSniHostCheck(boolean disableSniHostCheck) Whether the SNI (Server Name Indication) host check is disabled.TlsContextConfiguration.TlsContextConfigurationBuilder.keyStorePassword(String keyStorePassword) Key store password.TlsContextConfiguration.TlsContextConfigurationBuilder.keyStorePath(String keyStorePath) Absolute path to the key store.TlsContextConfiguration.TlsContextConfigurationBuilder.keyStoreProvider(String keyStoreProvider) The name of the provider for the key store, i.e., the value ofproviderto use when getting theKeyStoreinstance for the key store.TlsContextConfiguration.TlsContextConfigurationBuilder.keyStoreType(String keyStoreType) Key store type.The TLS/SSL protocol to use.The name of the JCE (Java Cryptography Extension) provider to use on the client side for cryptographic support (for example, SunJCE, Conscrypt, BC, etc.).TlsContextConfiguration.TlsContextConfigurationBuilder.supportedCiphers(List<String> supportedCiphers) A list of cipher suites (e.g., TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256) which are supported.TlsContextConfiguration.TlsContextConfigurationBuilder.supportedProtocols(List<String> supportedProtocols) List of supported protocols.TlsContextConfiguration.TlsContextConfigurationBuilder.trustSelfSignedCertificates(boolean trustSelfSignedCertificates) Whether self-signed certificates should be trusted.TlsContextConfiguration.TlsContextConfigurationBuilder.trustStorePassword(String trustStorePassword) Trust store password.TlsContextConfiguration.TlsContextConfigurationBuilder.trustStorePath(String trustStorePath) Absolute path to the trust store.TlsContextConfiguration.TlsContextConfigurationBuilder.trustStoreProvider(String trustStoreProvider) The name of the provider for the trust store, i.e., the value ofproviderto use when getting theKeyStoreinstance for the trust store.TlsContextConfiguration.TlsContextConfigurationBuilder.trustStoreType(String trustStoreType) Trust store type.TlsContextConfiguration.TlsContextConfigurationBuilder.verifyHostname(boolean verifyHostname) Should host names be verified when establishing secure connections?