Package com.tangosol.net.ssl
Class AbstractPrivateKeyLoader
java.lang.Object
com.tangosol.net.ssl.AbstractPrivateKeyLoader
- All Implemented Interfaces:
 PrivateKeyLoader
- Direct Known Subclasses:
 URLPrivateKeyLoader
A base class for 
PrivateKeyLoader implementations.- Since:
 - 22.06
 - Author:
 - Jonathan Knight 2020.01.25
 
- 
Field Summary
Fields - 
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedAbstractPrivateKeyLoader(String sName) Create aAbstractPrivateKeyLoader. - 
Method Summary
Modifier and TypeMethodDescriptionbooleanprotected abstract InputStreamOpen anInputStreamfor the specified named resource, which should be the contents of a JavaPrivateKeyin the format required by thisPrivateKeyLoaderimplementation.getName()Return the name of the private ky to load.inthashCode()load(PasswordProvider provider) Load a namedPrivateKey.protected voidtoString()Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface com.tangosol.net.ssl.PrivateKeyLoader
isEnabled, isRefreshable 
- 
Field Details
- 
m_sName
The name of the private key to load. 
 - 
 - 
Constructor Details
- 
AbstractPrivateKeyLoader
Create aAbstractPrivateKeyLoader.- Parameters:
 sName- the name of the private key to load
 
 - 
 - 
Method Details
- 
load
Description copied from interface:PrivateKeyLoaderLoad a namedPrivateKey.- Specified by:
 loadin interfacePrivateKeyLoader- Parameters:
 provider- an optionalPasswordProviderfor encrypted keys- Returns:
 - the 
PrivateKeyornullif no key could be loaded - Throws:
 GeneralSecurityExceptionIOException
 - 
getName
Return the name of the private ky to load.- Returns:
 - the name of the private ky to load
 
 - 
getInputStream
Open anInputStreamfor the specified named resource, which should be the contents of a JavaPrivateKeyin the format required by thisPrivateKeyLoaderimplementation.How the
InputStreamis 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 
InputStreamcontaining the named resource contents, ornullif noInputStreamcould 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 theCloseablemay benull.Any exception thrown calling
Closeable.close()will be ignored.- Parameters:
 closeable- theCloseableto close
 
 -