public interface KeyStoreConfiguration<T>
KeyStore
builder.Modifier and Type | Method and Description |
---|---|
T |
location(String location)
Configures the key store location.
|
T |
location(String location,
Class<?> relativeToClass)
Configures the key store location.
|
T |
location(String location,
ClassLoader classLoader)
Configures the key store location.
|
T |
location(URI location)
Configures the key store location.
|
T |
location(URL location)
Configures the key store location.
|
T |
password(char[] password)
Configures the key store password.
|
T |
password(String password)
Configures the key store password.
|
T |
provider(Provider provider)
Configures the JCA provider that will produce the key store.
|
T |
provider(String providerName)
Configures the name of the JCA provider that will produce the key store.
|
T |
type(String type)
Configures the key store type.
|
T type(String type)
type
- key store type (e.g. JKS)T provider(String providerName)
providerName
- provider nameT provider(Provider provider)
provider
- JCA providerT password(char[] password)
password
- passwordT password(String password)
password
- passwordT location(URL location)
location
- URL that specifies the location of the key storeT location(URI location)
location
- URI that specifies the location of the key store; the
URI may use the classpath:
pseudo-scheme to specify the
location of the key store relative to the root of the thread context
class loaderT location(String location)
location
- URI or path that specifies the location of the key store;
if a URI the classpath:
pseudo-scheme specifies the location of
the key store relative to the root of the thread context class loaderT location(String location, Class<?> relativeToClass)
location
- path to the key store resource relative to
relativeToClass
relativeToClass
- base class path location; its class loader will be
used to access the resourceT location(String location, ClassLoader classLoader)
location
- path to the key store resource relative to the root of
classLoader
classLoader
- that will be used to access the resourceCopyright © 2014–2016. All rights reserved.