javax.net.ssl
public abstract class TrustManagerFactorySpi extends Object
Constructor and Description |
---|
TrustManagerFactorySpi() |
Modifier and Type | Method and Description |
---|---|
protected abstract TrustManager[] |
engineGetTrustManagers()
Engine method that returns the trust managers created by this factory.
|
protected abstract void |
engineInit(KeyStore store)
Engine method that initializes this factory with a key store.
|
protected abstract void |
engineInit(ManagerFactoryParameters params)
Engine method that initializes this factory with some algorithm-specific
parameters.
|
public TrustManagerFactorySpi()
protected abstract TrustManager[] engineGetTrustManagers()
protected abstract void engineInit(ManagerFactoryParameters params) throws InvalidAlgorithmParameterException
params
- The parameters.InvalidAlgorithmParameterException
- If the given parameters are
inappropriate.protected abstract void engineInit(KeyStore store) throws KeyStoreException
store
- The key store.KeyStoreException
- If a problem occurs reading from the key store.