Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

javax.net.ssl
Class TrustManagerFactorySpi  view TrustManagerFactorySpi download TrustManagerFactorySpi.java

java.lang.Object
  extended byjavax.net.ssl.TrustManagerFactorySpi

public abstract class TrustManagerFactorySpi
extends java.lang.Object

The service provider interface (SPI) for trust managers.


Constructor Summary
TrustManagerFactorySpi()
           
 
Method Summary
protected abstract  TrustManager[] engineGetTrustManagers()
          Engine method that returns the trust managers created by this factory.
protected abstract  void engineInit(java.security.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.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TrustManagerFactorySpi

public TrustManagerFactorySpi()
Method Detail

engineGetTrustManagers

protected abstract TrustManager[] engineGetTrustManagers()
Engine method that returns the trust managers created by this factory.


engineInit

protected abstract void engineInit(ManagerFactoryParameters params)
                            throws java.security.InvalidAlgorithmParameterException
Engine method that initializes this factory with some algorithm-specific parameters.


engineInit

protected abstract void engineInit(java.security.KeyStore store)
                            throws java.security.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.