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.
TrustManagerFactorySpi
public TrustManagerFactorySpi()
The service provider interface (SPI) for trust managers.
engineGetTrustManagers
protected TrustManager[] engineGetTrustManagers()
Engine method that returns the trust managers created by this factory.
Returns:
engineInit
protected void engineInit(KeyStore store)
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.
Parameters:
Throws:
- If a problem occurs reading from the key store.
engineInit
protected void engineInit(javax.net.ssl.ManagerFactoryParameters params)
Engine method that initializes this factory with some algorithm-specific
parameters.
Parameters:
Throws:
- If the given parameters are
inappropriate.