Uses of Class
com.loomcache.common.config.TlsConfig.Builder
Packages that use TlsConfig.Builder
-
Uses of TlsConfig.Builder in com.loomcache.common.config
Methods in com.loomcache.common.config that return TlsConfig.BuilderModifier and TypeMethodDescriptionTlsConfig.Builder.acceptTimeoutMs(int timeoutMs) Set the accept timeout (SO_TIMEOUT) applied to the TLS server socket.static TlsConfig.BuilderTlsConfig.builder()Create a new builder for TlsConfig.TlsConfig.Builder.certExpirationCriticalDays(int days) Set the number of days before expiration to trigger critical alert.TlsConfig.Builder.certExpirationWarningDays(int days) Set the number of days before expiration to warn.TlsConfig.Builder.cipherSuites(String... suites) Set the cipher suites to enable.TlsConfig.Builder.cipherSuites(List<String> suites) Set the cipher suites to enable.TlsConfig.Builder.enabled(boolean enabled) Enable or disable TLS.TlsConfig.Builder.keyStorePassword(String password) Set the keystore password.TlsConfig.Builder.keyStorePath(String path) Set the keystore path.TlsConfig.Builder.keyStorePath(@Nullable Path path) Set the keystore path.TlsConfig.Builder.keyStoreType(String type) Set the keystore type (PKCS12 or JKS).Set the TLS protocols to enable.Set the TLS protocols to enable.TlsConfig.Builder.provider(TlsProvider provider) Set the TLS provider.Set the TLS provider from configuration text.TlsConfig.Builder.requireClientAuth(boolean require) Require client authentication (mTLS).TlsConfig.Builder.revocationCheckingEnabled(boolean enabled) Enable or disable certificate revocation checking (CRL/OCSP).TlsConfig.Builder.revocationSoftFail(boolean softFail) Set revocation checking mode.TlsConfig.Builder.trustStorePassword(String password) Set the truststore password.TlsConfig.Builder.trustStorePath(String path) Set the truststore path.TlsConfig.Builder.trustStorePath(@Nullable Path path) Set the truststore path.TlsConfig.Builder.trustStoreType(String type) Set the truststore type (PKCS12 or JKS).