public class KeyStoreParameters extends JsseParameters
KeyStore
instance.Modifier and Type | Field and Description |
---|---|
protected KeyStore |
keyStore
The optional key store, which has higher priority then value in resource below.
|
protected String |
password
The optional password for reading/opening/verifying the key store.
|
protected String |
provider
The optional provider identifier for instantiating the key store.
|
protected String |
resource
The optional file path, class path resource, or URL of the resource used to load the key store.
|
protected String |
type
The optional type of the key store to load.
|
Constructor and Description |
---|
KeyStoreParameters() |
Modifier and Type | Method and Description |
---|---|
KeyStore |
createKeyStore()
Creates a
KeyStoreParameters instance based off of the configuration state of this instance. |
String |
getPassword() |
String |
getProvider() |
String |
getResource() |
String |
getType() |
void |
setKeyStore(KeyStore keyStore)
Sets the optional key store, which has higher priority then value in resource.
|
void |
setPassword(String value)
Set the optional password for reading/opening/verifying the key store.
|
void |
setProvider(String value)
Sets the optional provider identifier for instantiating the key store.
|
void |
setResource(String value)
Sets the optional file path, class path resource, or URL of the resource used to load the key store.
|
void |
setType(String value)
Sets the type of the key store to create and load.
|
String |
toString() |
getCamelContext, parsePropertyValue, parsePropertyValues, resolveResource, setCamelContext
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
trySetCamelContext
protected String type
protected String password
protected String provider
protected KeyStore keyStore
protected String resource
public String getType()
setType(String)
public void setType(String value)
value
- the key store type identifier (may be null
)public String getPassword()
getPassword()
public void setPassword(String value)
value
- the password value (may be null
)public String getProvider()
setProvider(String)
public void setProvider(String value)
value
- the provider identifier (may be null
)Security.getProviders()
public String getResource()
getResource()
public void setResource(String value)
value
- the resource (may be null
)public void setKeyStore(KeyStore keyStore)
keyStore
- the KeyStore (may be null
)public KeyStore createKeyStore() throws GeneralSecurityException, IOException
KeyStoreParameters
instance based off of the configuration state of this instance. If
getType()
returns null
, the default key store type is loaded, otherwise the type will be of that
specified.
The created instance will always be loaded, but if the type requires an input stream and getResource()
returns null
, the instance will be empty. The loading of the resource, if not null
, is attempted
by treating the resource as a file path, a class path resource, and a URL in that order. An exception is thrown
if the resource cannot be resolved to readable input stream using any of the above methods.GeneralSecurityException
- if there is an error creating an instance with the given configurationIOException
- if there is an error resolving the configured resource to an input streamApache Camel