KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > net > ssl > TrustManagerFactory

javax.net.ssl
Class TrustManagerFactory

java.lang.Object
  extended by javax.net.ssl.TrustManagerFactory
See Also:
Top Examples, Source Code, TrustManager

public final String getAlgorithm()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final String getDefaultAlgorithm()
See Also:
Security.setProperty(String, String)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final TrustManagerFactory getInstance(String algorithm)
                                             throws NoSuchAlgorithmException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final TrustManagerFactory getInstance(String algorithm,
                                                    String provider)
                                             throws NoSuchAlgorithmException,
                                                    NoSuchProviderException
See Also:
IllegalArgumentException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public static final TrustManagerFactory getInstance(String algorithm,
                                                    Provider provider)
                                             throws NoSuchAlgorithmException
See Also:
IllegalArgumentException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public final Provider getProvider()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public final TrustManager[] getTrustManagers()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public final void init(KeyStore ks)
                throws KeyStoreException
See Also:
init(ManagerFactoryParameters)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public final void init(ManagerFactoryParameters spec)
                throws InvalidAlgorithmParameterException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


protected TrustManagerFactory(TrustManagerFactorySpi factorySpi,
                              Provider provider,
                              String algorithm)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags