Uses of Interface
org.springframework.boot.ssl.SslBundle
Package
Description
Auto-configuration for SSL bundles.
Auto-configuration for web clients.
Auto-configuration for Spring Framework's functional web client.
Client-side HTTP support classes.
Reactor Netty based RSocket server implementation.
Management of trust material that can be used to establish an SSL connection.
Web client utilities.
Embedded reactive web server implementation backed by Netty.
Support for embedded web servers.
Web Services client utilities.
-
Uses of SslBundle in org.springframework.boot.autoconfigure.ssl
Modifier and TypeClassDescriptionfinal class
Modifier and TypeMethodDescriptionstatic SslBundle
PropertiesSslBundle.get
(JksSslBundleProperties properties) Get anSslBundle
for the givenJksSslBundleProperties
.static SslBundle
PropertiesSslBundle.get
(JksSslBundleProperties properties, ResourceLoader resourceLoader) Get anSslBundle
for the givenJksSslBundleProperties
.static SslBundle
PropertiesSslBundle.get
(PemSslBundleProperties properties) Get anSslBundle
for the givenPemSslBundleProperties
.static SslBundle
PropertiesSslBundle.get
(PemSslBundleProperties properties, ResourceLoader resourceLoader) Get anSslBundle
for the givenPemSslBundleProperties
. -
Uses of SslBundle in org.springframework.boot.autoconfigure.web.client
-
Uses of SslBundle in org.springframework.boot.autoconfigure.web.reactive.function.client
-
Uses of SslBundle in org.springframework.boot.http.client
Modifier and TypeMethodDescriptionClientHttpRequestFactorySettings.sslBundle()
Returns the value of thesslBundle
record component.Modifier and TypeMethodDescriptionClientHttpRequestFactorySettings.ofSslBundle
(SslBundle sslBundle) Return a newClientHttpRequestFactorySettings
using defaults for all settings other than the provided SSL bundle.ClientHttpRequestFactorySettings.withSslBundle
(SslBundle sslBundle) Return a newClientHttpRequestFactorySettings
instance with an updated SSL bundle setting.Modifier and TypeMethodDescriptionHttpComponentsClientHttpRequestFactoryBuilder.withTlsSocketStrategyFactory
(Function<SslBundle, org.apache.hc.client5.http.ssl.TlsSocketStrategy> tlsSocketStrategyFactory) Return a newHttpComponentsClientHttpRequestFactoryBuilder
with a replacementTlsSocketStrategy
factory.ModifierConstructorDescriptionClientHttpRequestFactorySettings
(ClientHttpRequestFactorySettings.Redirects redirects, Duration connectTimeout, Duration readTimeout, SslBundle sslBundle) Creates an instance of aClientHttpRequestFactorySettings
record class. -
Uses of SslBundle in org.springframework.boot.rsocket.netty
-
Uses of SslBundle in org.springframework.boot.ssl
Modifier and TypeMethodDescriptionReturn anSslBundle
with the provided name.static SslBundle
SslBundle.of
(SslStoreBundle stores) Factory method to create a newSslBundle
instance.static SslBundle
SslBundle.of
(SslStoreBundle stores, SslBundleKey key) Factory method to create a newSslBundle
instance.static SslBundle
SslBundle.of
(SslStoreBundle stores, SslBundleKey key, SslOptions options) Factory method to create a newSslBundle
instance.static SslBundle
SslBundle.of
(SslStoreBundle stores, SslBundleKey key, SslOptions options, String protocol) Factory method to create a newSslBundle
instance.static SslBundle
SslBundle.of
(SslStoreBundle stores, SslBundleKey key, SslOptions options, String protocol, SslManagerBundle managers) Factory method to create a newSslBundle
instance.Modifier and TypeMethodDescriptionvoid
DefaultSslBundleRegistry.registerBundle
(String name, SslBundle bundle) void
SslBundleRegistry.registerBundle
(String name, SslBundle bundle) Register a namedSslBundle
.void
DefaultSslBundleRegistry.updateBundle
(String name, SslBundle updatedBundle) void
SslBundleRegistry.updateBundle
(String name, SslBundle updatedBundle) Updates anSslBundle
.Modifier and TypeMethodDescriptionvoid
DefaultSslBundleRegistry.addBundleRegisterHandler
(BiConsumer<String, SslBundle> registerHandler) void
SslBundles.addBundleRegisterHandler
(BiConsumer<String, SslBundle> registerHandler) Add a handler that will be called each time a bundle is registered.void
DefaultSslBundleRegistry.addBundleUpdateHandler
(String name, Consumer<SslBundle> updateHandler) void
SslBundles.addBundleUpdateHandler
(String name, Consumer<SslBundle> updateHandler) Add a handler that will be called each time the named bundle is updated. -
Uses of SslBundle in org.springframework.boot.web.client
Modifier and TypeMethodDescriptionClientHttpRequestFactorySettings.sslBundle()
Deprecated, for removal: This API element is subject to removal in a future version.Returns the value of thesslBundle
record component.Modifier and TypeMethodDescriptionRestTemplateBuilder.setSslBundle
(SslBundle sslBundle) Deprecated, for removal: This API element is subject to removal in a future version.Sets the SSL bundle on the underlyingClientHttpRequestFactory
.ClientHttpRequestFactorySettings.withSslBundle
(SslBundle sslBundle) Deprecated, for removal: This API element is subject to removal in a future version.Return a newClientHttpRequestFactorySettings
instance with an updated SSL bundle setting.ModifierConstructorDescriptionClientHttpRequestFactorySettings
(Duration connectTimeout, Duration readTimeout, SslBundle sslBundle) Deprecated, for removal: This API element is subject to removal in a future version.Creates an instance of aClientHttpRequestFactorySettings
record class. -
Uses of SslBundle in org.springframework.boot.web.embedded.netty
Modifier and TypeMethodDescriptionprotected final reactor.netty.tcp.AbstractProtocolSslContextSpec<?>
SslServerCustomizer.createSslContextSpec
(SslBundle sslBundle) Create anAbstractProtocolSslContextSpec
for a givenSslBundle
.ModifierConstructorDescriptionSslServerCustomizer
(Http2 http2, Ssl.ClientAuth clientAuth, SslBundle sslBundle, Map<String, SslBundle> serverNameSslBundles) ModifierConstructorDescriptionSslServerCustomizer
(Http2 http2, Ssl.ClientAuth clientAuth, SslBundle sslBundle, Map<String, SslBundle> serverNameSslBundles) -
Uses of SslBundle in org.springframework.boot.web.server
Modifier and TypeMethodDescriptionstatic SslBundle
static SslBundle
WebServerSslBundle.get
(Ssl ssl, SslBundles sslBundles) protected final SslBundle
AbstractConfigurableWebServerFactory.getSslBundle()
Return theSslBundle
that should be used with this server. -
Uses of SslBundle in org.springframework.boot.webservices.client
Modifier and TypeMethodDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Set anSslBundle
that will be used to configure a secure connection.
RestTemplateBuilder.sslBundle(SslBundle)