Package | Description |
---|---|
org.springframework.vault.config |
Spring configuration for Vault.
|
org.springframework.vault.support |
Classes supporting the Vault packages, such as value objects.
|
Modifier and Type | Method and Description |
---|---|
SslConfiguration |
AbstractVaultConfiguration.sslConfiguration() |
SslConfiguration |
EnvironmentVaultConfiguration.sslConfiguration() |
Modifier and Type | Method and Description |
---|---|
static org.springframework.http.client.ClientHttpRequestFactory |
ClientHttpRequestFactoryFactory.create(ClientOptions options,
SslConfiguration sslConfiguration)
|
Modifier and Type | Field and Description |
---|---|
static SslConfiguration |
SslConfiguration.NONE
Default
SslConfiguration without a KeyStore/TrustStore configured. |
Modifier and Type | Method and Description |
---|---|
SslConfiguration |
SslConfiguration.create(org.springframework.core.io.Resource keyStore,
char[] keyStorePassword,
org.springframework.core.io.Resource trustStore,
char[] trustStorePassword)
Create a new
SslConfiguration for the given truststore with the default
KeyStore type. |
SslConfiguration |
SslConfiguration.create(org.springframework.core.io.Resource keyStore,
String keyStorePassword,
org.springframework.core.io.Resource trustStore,
String trustStorePassword)
Deprecated.
Since 1.1, use
create(Resource, char[], Resource, char[]) to
prevent String interning and retaining passwords represented as String
longer from GC than necessary. |
static SslConfiguration |
SslConfiguration.forKeyStore(org.springframework.core.io.Resource keyStore,
char[] keyStorePassword)
Create a new
SslConfiguration for the given key store with the default
KeyStore type. |
static SslConfiguration |
SslConfiguration.forKeyStore(org.springframework.core.io.Resource keyStore,
String keyStorePassword)
Deprecated.
Since 1.1, use
forKeyStore(Resource, char[]) to prevent
String interning and retaining passwords represented as String longer from
GC than necessary. |
static SslConfiguration |
SslConfiguration.forTrustStore(org.springframework.core.io.Resource trustStore,
char[] trustStorePassword)
Create a new
SslConfiguration for the given trust store with the default
KeyStore type. |
static SslConfiguration |
SslConfiguration.forTrustStore(org.springframework.core.io.Resource trustStore,
String trustStorePassword)
Deprecated.
Since 1.1, use
forTrustStore(Resource, char[]) to prevent
String interning and retaining passwords represented as String longer from
GC than necessary. |
Copyright © 2016–2017 Pivotal Software, Inc.. All rights reserved.