javax.net.ssl
Class TrustManagerFactorySpi
java.lang.Object
javax.net.ssl.TrustManagerFactorySpi
public abstract class TrustManagerFactorySpi
extends java.lang.Object
The service provider interface (SPI) for trust managers.
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.
|
TrustManagerFactorySpi
public TrustManagerFactorySpi()
engineGetTrustManagers
protected abstract TrustManager[] engineGetTrustManagers()
Engine method that returns the trust managers created by this factory.
engineInit
protected abstract void engineInit(KeyStore store)
throws KeyStoreException
Engine method that initializes this factory with a key store. The key
store parameter may be null, in which case some default should be used.
engineInit
protected abstract void engineInit(ManagerFactoryParameters params)
throws InvalidAlgorithmParameterException
Engine method that initializes this factory with some algorithm-specific
parameters.