Uses of Class
org.springframework.vault.support.SslConfiguration
Package
Description
Spring Vault Client abstraction.
Spring configuration for Vault.
Classes supporting the Vault packages, such as value objects.
-
Uses of SslConfiguration in org.springframework.vault.client
Modifier and TypeMethodDescriptionstatic ClientHttpConnector
ClientHttpConnectorFactory.create
(ClientOptions options, SslConfiguration sslConfiguration) static ClientHttpRequestFactory
ClientHttpRequestFactoryFactory.create
(ClientOptions options, SslConfiguration sslConfiguration) -
Uses of SslConfiguration in org.springframework.vault.config
Modifier and TypeMethodDescriptionAbstractVaultConfiguration.sslConfiguration()
EnvironmentVaultConfiguration.sslConfiguration()
-
Uses of SslConfiguration in org.springframework.vault.support
Modifier and TypeMethodDescriptionstatic SslConfiguration
SslConfiguration.create
(Resource keyStore, char[] keyStorePassword, Resource trustStore, char[] trustStorePassword) Create a newSslConfiguration
for the given truststore with the defaultKeyStore
type.SslConfiguration.create
(Resource keyStore, String keyStorePassword, Resource trustStore, String trustStorePassword) Deprecated.static SslConfiguration
SslConfiguration.forKeyStore
(Resource keyStore, char[] keyStorePassword) Create a newSslConfiguration
for the given key store with the defaultKeyStore
type.static SslConfiguration
SslConfiguration.forKeyStore
(Resource keyStore, char[] keyStorePassword, SslConfiguration.KeyConfiguration keyConfiguration) Create a newSslConfiguration
for the given key store with the defaultKeyStore
type.static SslConfiguration
SslConfiguration.forKeyStore
(Resource keyStore, String keyStorePassword) Deprecated.Since 1.1, useforKeyStore(Resource, char[])
to preventString
interning and retaining passwords represented as String longer from GC than necessary.static SslConfiguration
SslConfiguration.forKeyStore
(SslConfiguration.KeyStoreConfiguration keyStore) Create a newSslConfiguration
for the givenkey store
.static SslConfiguration
SslConfiguration.forKeyStore
(SslConfiguration.KeyStoreConfiguration keyStore, SslConfiguration.KeyConfiguration keyConfiguration) static SslConfiguration
SslConfiguration.forTrustStore
(Resource trustStore, char[] trustStorePassword) Create a newSslConfiguration
for the given trust store with the defaultKeyStore
type.static SslConfiguration
SslConfiguration.forTrustStore
(Resource trustStore, String trustStorePassword) Deprecated.Since 1.1, useforTrustStore(Resource, char[])
to preventString
interning and retaining passwords represented as String longer from GC than necessary.static SslConfiguration
SslConfiguration.forTrustStore
(SslConfiguration.KeyStoreConfiguration trustStore) Create a newSslConfiguration
for the giventrust store
.static SslConfiguration
SslConfiguration.unconfigured()
Factory method returning an unconfiguredSslConfiguration
instance.SslConfiguration.withEnabledCipherSuites
(String... enabledCipherSuites) Create a newSslConfiguration
with the enabled cipher suites applied retaining the other configuration from this instance.SslConfiguration.withEnabledCipherSuites
(List<String> enabledCipherSuites) Create a newSslConfiguration
with the enabled cipher suites applied retaining the other configuration from this instance.SslConfiguration.withEnabledProtocols
(String... enabledProtocols) Create a newSslConfiguration
with the enabled protocol versions applied retaining the other configuration from this instance.SslConfiguration.withEnabledProtocols
(List<String> enabledProtocols) Create a newSslConfiguration
with the enabled protocol versions applied retaining the other configuration from this instance.SslConfiguration.withKeyStore
(SslConfiguration.KeyStoreConfiguration configuration) Create a newSslConfiguration
withSslConfiguration.KeyStoreConfiguration
applied retaining thetrust store
configuration.SslConfiguration.withKeyStore
(SslConfiguration.KeyStoreConfiguration configuration, SslConfiguration.KeyConfiguration keyConfiguration) Create a newSslConfiguration
withSslConfiguration.KeyStoreConfiguration
andSslConfiguration.KeyConfiguration
applied retaining thetrust store
configuration.SslConfiguration.withTrustStore
(SslConfiguration.KeyStoreConfiguration configuration) Create a newSslConfiguration
withtrust store configuration
applied retaining thegetKeyStoreConfiguration()
key store} configuration.
create(Resource, char[], Resource, char[])
to preventString
interning and retaining passwords represented as String longer from GC than necessary.