Home | History | Annotate | Download | only in ssl

Lines Matching defs:TrustManagerFactory

33 public class TrustManagerFactory {
35 private static final String SERVICE = "TrustManagerFactory";
41 private static final String PROPERTY_NAME = "ssl.TrustManagerFactory.algorithm";
43 // Default value of TrustManagerFactory type.
47 * Returns the default algorithm name for the {@code TrustManagerFactory}. The
49 * {@code 'ssl.TrustManagerFactory.algorithm'}.
59 * Creates a new {@code TrustManagerFactory} instance for the specified
71 public static final TrustManagerFactory getInstance(String algorithm)
77 return new TrustManagerFactory((TrustManagerFactorySpi) sap.spi, sap.provider, algorithm);
81 * Creates a new {@code TrustManagerFactory} instance for the specified
99 public static final TrustManagerFactory getInstance(String algorithm, String provider)
112 * Creates a new {@code TrustManagerFactory} instance for the specified
127 public static final TrustManagerFactory getInstance(String algorithm, Provider provider)
136 return new TrustManagerFactory((TrustManagerFactorySpi) spi, provider, algorithm);
149 * Creates a new {@code TrustManagerFactory} instance.
158 protected TrustManagerFactory(TrustManagerFactorySpi factorySpi, Provider provider,
166 * Returns the name of this {@code TrustManagerFactory} algorithm
169 * @return the name of this {@code TrustManagerFactory} algorithm
177 * Returns the provider for this {@code TrustManagerFactory} instance.
179 * @return the provider for this {@code TrustManagerFactory} instance.