Uses of Interface
org.springframework.boot.ssl.SslBundle
Packages that use SslBundle
Package
Description
Auto-configuration for RabbitMQ.
Auto-configuration for SSL bundles.
Auto-configuration for Cassandra.
Auto-configuration for Couchbase.
Auto-configuration for Spring Data Redis.
Service connection support for Docker Compose.
Auto-configuration for Elasticsearch client.
Client-side HTTP support classes.
Client-side reactive HTTP support classes.
Auto-configuration for Apache Kafka.
Auto-configuration for MongoDB.
Reactive web server implementation backed by Netty.
Web client utilities.
Auto-configuration for RestClient and RestTemplate.
Reactor Netty based RSocket server implementation.
Management of trust material that can be used to establish an SSL connection.
General support for service connections in tests.
Reactive and servlet web server implementations backed by Tomcat.
Support for embedded web servers.
Auto-configuration for Spring Framework's functional web client.
-
Uses of SslBundle in org.springframework.boot.amqp.autoconfigure
Methods in org.springframework.boot.amqp.autoconfigure that return SslBundleModifier and TypeMethodDescriptiondefault @Nullable SslBundle
RabbitConnectionDetails.getSslBundle()
SSL bundle to use. -
Uses of SslBundle in org.springframework.boot.autoconfigure.ssl
Classes in org.springframework.boot.autoconfigure.ssl that implement SslBundleModifier and TypeClassDescriptionfinal class
Methods in org.springframework.boot.autoconfigure.ssl that return SslBundleModifier 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.cassandra.autoconfigure
Methods in org.springframework.boot.cassandra.autoconfigure that return SslBundleModifier and TypeMethodDescriptiondefault @Nullable SslBundle
CassandraConnectionDetails.getSslBundle()
SSL bundle to use. -
Uses of SslBundle in org.springframework.boot.couchbase.autoconfigure
Methods in org.springframework.boot.couchbase.autoconfigure that return SslBundleModifier and TypeMethodDescriptiondefault @Nullable SslBundle
CouchbaseConnectionDetails.getSslBundle()
SSL bundle to use. -
Uses of SslBundle in org.springframework.boot.data.redis.autoconfigure
Methods in org.springframework.boot.data.redis.autoconfigure that return SslBundleModifier and TypeMethodDescriptiondefault @Nullable SslBundle
DataRedisConnectionDetails.getSslBundle()
SSL bundle to use. -
Uses of SslBundle in org.springframework.boot.docker.compose.service.connection
Methods in org.springframework.boot.docker.compose.service.connection that return SslBundleModifier and TypeMethodDescriptionprotected @Nullable SslBundle
DockerComposeConnectionDetailsFactory.DockerComposeConnectionDetails.getSslBundle
(RunningService service) -
Uses of SslBundle in org.springframework.boot.elasticsearch.autoconfigure
Methods in org.springframework.boot.elasticsearch.autoconfigure that return SslBundleModifier and TypeMethodDescriptiondefault @Nullable SslBundle
ElasticsearchConnectionDetails.getSslBundle()
SSL bundle to use. -
Uses of SslBundle in org.springframework.boot.http.client
Methods in org.springframework.boot.http.client that return SslBundleModifier and TypeMethodDescription@Nullable SslBundle
ClientHttpRequestFactorySettings.sslBundle()
Returns the value of thesslBundle
record component.@Nullable SslBundle
HttpClientSettings.sslBundle()
Returns the value of thesslBundle
record component.Methods in org.springframework.boot.http.client with parameters of type SslBundleModifier and TypeMethodDescription@Nullable org.apache.hc.client5.http.ssl.TlsSocketStrategy
HttpComponentsHttpClientBuilder.TlsSocketStrategyFactory.getTlsSocketStrategy
(@Nullable SslBundle sslBundle) Return theTlsSocketStrategy
to use for the given bundle.ClientHttpRequestFactorySettings.ofSslBundle
(@Nullable SslBundle sslBundle) Return a newClientHttpRequestFactorySettings
using defaults for all settings other than the provided SSL bundle.ClientHttpRequestFactorySettings.withSslBundle
(@Nullable SslBundle sslBundle) Return a newClientHttpRequestFactorySettings
instance with an updated SSL bundle setting.Method parameters in org.springframework.boot.http.client with type arguments of type SslBundleModifier and TypeMethodDescriptionHttpComponentsHttpAsyncClientBuilder.withTlsStrategyFactory
(Function<@Nullable SslBundle, @Nullable org.apache.hc.core5.http.nio.ssl.TlsStrategy> tlsStrategyFactory) Return a newHttpComponentsHttpAsyncClientBuilder
with a replacementTlsStrategy
factory.Constructors in org.springframework.boot.http.client with parameters of type SslBundleModifierConstructorDescriptionClientHttpRequestFactorySettings
(@Nullable HttpRedirects redirects, @Nullable Duration connectTimeout, @Nullable Duration readTimeout, @Nullable SslBundle sslBundle) Creates an instance of aClientHttpRequestFactorySettings
record class.HttpClientSettings
(@Nullable HttpRedirects redirects, @Nullable Duration connectTimeout, @Nullable Duration readTimeout, @Nullable SslBundle sslBundle) Creates an instance of aHttpClientSettings
record class. -
Uses of SslBundle in org.springframework.boot.http.client.reactive
Methods in org.springframework.boot.http.client.reactive that return SslBundleModifier and TypeMethodDescription@Nullable SslBundle
ClientHttpConnectorSettings.sslBundle()
Returns the value of thesslBundle
record component.Methods in org.springframework.boot.http.client.reactive with parameters of type SslBundleModifier and TypeMethodDescriptionstatic ClientHttpConnectorSettings
ClientHttpConnectorSettings.ofSslBundle
(@Nullable SslBundle sslBundle) Return a newClientHttpConnectorSettings
using defaults for all settings other than the provided SSL bundle.ClientHttpConnectorSettings.withSslBundle
(@Nullable SslBundle sslBundle) Return a newClientHttpConnectorSettings
instance with an updated SSL bundle setting.Method parameters in org.springframework.boot.http.client.reactive with type arguments of type SslBundleModifier and TypeMethodDescriptionHttpComponentsClientHttpConnectorBuilder.withTlsSocketStrategyFactory
(Function<@Nullable SslBundle, @Nullable org.apache.hc.core5.http.nio.ssl.TlsStrategy> tlsStrategyFactory) Return a newHttpComponentsClientHttpConnectorBuilder
with a replacementTlsStrategy
factory.Constructors in org.springframework.boot.http.client.reactive with parameters of type SslBundleModifierConstructorDescriptionClientHttpConnectorSettings
(@Nullable HttpRedirects redirects, @Nullable Duration connectTimeout, @Nullable Duration readTimeout, @Nullable SslBundle sslBundle) Creates an instance of aClientHttpConnectorSettings
record class. -
Uses of SslBundle in org.springframework.boot.kafka.autoconfigure
Methods in org.springframework.boot.kafka.autoconfigure that return SslBundleModifier and TypeMethodDescriptiondefault @Nullable SslBundle
KafkaConnectionDetails.Configuration.getSslBundle()
Returns the SSL bundle.default @Nullable SslBundle
KafkaConnectionDetails.getSslBundle()
Returns the SSL bundle.Methods in org.springframework.boot.kafka.autoconfigure with parameters of type SslBundleModifier and TypeMethodDescriptionKafkaConnectionDetails.Configuration.of
(List<String> bootstrapServers, @Nullable SslBundle sslBundle, @Nullable String securityProtocol) Creates a new configuration with the given bootstrap servers, SSL bundle and security protocol.Creates a new configuration with the given bootstrap servers and SSL bundle. -
Uses of SslBundle in org.springframework.boot.mongodb.autoconfigure
Methods in org.springframework.boot.mongodb.autoconfigure that return SslBundleModifier and TypeMethodDescriptiondefault @Nullable SslBundle
MongoConnectionDetails.getSslBundle()
SSL bundle to use.@Nullable SslBundle
PropertiesMongoConnectionDetails.getSslBundle()
-
Uses of SslBundle in org.springframework.boot.reactor.netty
Methods in org.springframework.boot.reactor.netty with parameters of type SslBundleModifier and TypeMethodDescriptionprotected final reactor.netty.tcp.AbstractProtocolSslContextSpec
<?> SslServerCustomizer.createSslContextSpec
(SslBundle sslBundle) Create anAbstractProtocolSslContextSpec
for a givenSslBundle
.Constructors in org.springframework.boot.reactor.netty with parameters of type SslBundleModifierConstructorDescriptionSslServerCustomizer
(@Nullable Http2 http2, @Nullable Ssl.ClientAuth clientAuth, SslBundle sslBundle, Map<String, SslBundle> serverNameSslBundles) Constructor parameters in org.springframework.boot.reactor.netty with type arguments of type SslBundleModifierConstructorDescriptionSslServerCustomizer
(@Nullable Http2 http2, @Nullable Ssl.ClientAuth clientAuth, SslBundle sslBundle, Map<String, SslBundle> serverNameSslBundles) -
Uses of SslBundle in org.springframework.boot.restclient
Methods in org.springframework.boot.restclient with parameters of type SslBundleModifier and TypeMethodDescriptionSets the SSL bundle on the underlyingClientHttpRequestFactory
. -
Uses of SslBundle in org.springframework.boot.restclient.autoconfigure
Methods in org.springframework.boot.restclient.autoconfigure with parameters of type SslBundle -
Uses of SslBundle in org.springframework.boot.rsocket.netty
Methods in org.springframework.boot.rsocket.netty that return types with arguments of type SslBundle -
Uses of SslBundle in org.springframework.boot.ssl
Methods in org.springframework.boot.ssl that return SslBundleModifier and TypeMethodDescriptionReturn anSslBundle
with the provided name.static SslBundle
SslBundle.of
(@Nullable SslStoreBundle stores) Factory method to create a newSslBundle
instance.static SslBundle
SslBundle.of
(@Nullable SslStoreBundle stores, @Nullable SslBundleKey key) Factory method to create a newSslBundle
instance.static SslBundle
SslBundle.of
(@Nullable SslStoreBundle stores, @Nullable SslBundleKey key, @Nullable SslOptions options) Factory method to create a newSslBundle
instance.static SslBundle
SslBundle.of
(@Nullable SslStoreBundle stores, @Nullable SslBundleKey key, @Nullable SslOptions options, @Nullable String protocol) Factory method to create a newSslBundle
instance.static SslBundle
SslBundle.of
(@Nullable SslStoreBundle stores, @Nullable SslBundleKey key, @Nullable SslOptions options, @Nullable String protocol, @Nullable SslManagerBundle managers) Factory method to create a newSslBundle
instance.static SslBundle
SslBundle.systemDefault()
Factory method to create a newSslBundle
which uses the system defaults.Methods in org.springframework.boot.ssl with parameters of type SslBundleModifier 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
.Method parameters in org.springframework.boot.ssl with type arguments of type SslBundleModifier 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.Constructors in org.springframework.boot.ssl with parameters of type SslBundle -
Uses of SslBundle in org.springframework.boot.testcontainers.service.connection
Methods in org.springframework.boot.testcontainers.service.connection that return SslBundleModifier and TypeMethodDescriptionprotected @Nullable SslBundle
ContainerConnectionDetailsFactory.ContainerConnectionDetails.getSslBundle()
Return theSslBundle
to use with this connection ornull
. -
Uses of SslBundle in org.springframework.boot.tomcat
Methods in org.springframework.boot.tomcat with parameters of type SslBundleModifier and TypeMethodDescriptionvoid
void
Method parameters in org.springframework.boot.tomcat with type arguments of type SslBundle -
Uses of SslBundle in org.springframework.boot.web.server
Classes in org.springframework.boot.web.server that implement SslBundleMethods in org.springframework.boot.web.server that return SslBundleModifier and TypeMethodDescriptionstatic SslBundle
WebServerSslBundle.get
(@Nullable Ssl ssl, @Nullable SslBundles sslBundles) static SslBundle
protected final SslBundle
AbstractConfigurableWebServerFactory.getSslBundle()
Return theSslBundle
that should be used with this server.Methods in org.springframework.boot.web.server that return types with arguments of type SslBundle -
Uses of SslBundle in org.springframework.boot.webclient.autoconfigure
Methods in org.springframework.boot.webclient.autoconfigure with parameters of type SslBundle