T
- builder typepublic interface KeyStoreConfiguration<T>
KeyStore
builder.Modifier and Type | Method and Description |
---|---|
T |
location(String location)
Specifies the key store location.
|
T |
location(String location,
Class<?> relativeToClass)
Specifies the key store location.
|
T |
location(String location,
ClassLoader classLoader)
Specifies the key store location.
|
T |
location(URI location)
Specifies the key store location.
|
T |
location(URL location)
Specifies the key store location.
|
T |
password(char[] password)
Specifies the key store password.
|
T |
password(String password)
Specifies the key store password.
|
T |
provider(Provider provider)
Specifies the JCA provider that will produce the key store.
|
T |
provider(String providerName)
Specifies the name of the JCA provider that will produce the key store.
|
T |
type(String type)
Specifies 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; 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;
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, 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 © 2016–2018 Carl E Harris, Jr. All rights reserved.