Package com.tangosol.net.ssl
Class AbstractKeyStoreLoader
java.lang.Object
com.tangosol.net.ssl.AbstractKeyStoreLoader
- All Implemented Interfaces:
KeyStoreLoader
- Direct Known Subclasses:
URLKeyStoreLoader
A base class for
KeyStoreLoader
implementations.- Since:
- 22.06
- Author:
- Jonathan Knight 2020.01.25
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
protected abstract InputStream
Open anInputStream
for the specified named resource, which should be the contents of a JavaKeyStore
in the format required by thisKeyStoreLoader
implementation.getName()
int
hashCode()
load
(String sType, PasswordProvider password) Load a namedKeyStore
.protected void
toString()
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface com.tangosol.net.ssl.KeyStoreLoader
createKeyStore, isEnabled, isRefreshable, load, load
-
Field Details
-
m_sName
The name of the keystore to load.
-
-
Constructor Details
-
AbstractKeyStoreLoader
-
-
Method Details
-
getName
-
load
public KeyStore load(String sType, PasswordProvider password) throws GeneralSecurityException, IOException Description copied from interface:KeyStoreLoader
Load a namedKeyStore
.- Specified by:
load
in interfaceKeyStoreLoader
- Parameters:
sType
- theKeyStore
typepassword
- an optionalPasswordProvider
for theKeyStore
password- Returns:
- the
KeyStore
ornull
if no key could be loaded - Throws:
GeneralSecurityException
IOException
-
getInputStream
Open anInputStream
for the specified named resource, which should be the contents of a JavaKeyStore
in the format required by thisKeyStoreLoader
implementation.How the
InputStream
is created based on the name is purely dependent on how subclasses are implemented. For example, the name could be a URL, or it could refer to a name of a secret in some secrets store, etc.- Returns:
- an
InputStream
containing the named resource contents, ornull
if noInputStream
could be opened - Throws:
IOException
- if an error occurs creating theInputStream
-
equals
-
hashCode
public int hashCode() -
toString
-
safeClose
Close the specifiedCloseable
, ignoring any errors or the fact that theCloseable
may benull
.Any exception thrown calling
Closeable.close()
will be ignored.- Parameters:
closeable
- theCloseable
to close
-