ManagerFactoryParameters | javax.net.ssl |
This marker interface identifies
objects that provide algorithm-specific or provider-specific
initialization parameters for KeyManagerFactory
and trustManagerFactory objects. In the default
"SunJSSE" provider shiped by Sun,
the only supported type for these factory classes is
"SunX509". Factories of these types
need to be initialized with a KeyStore object but
do not require any specialized
ManagerFactoryParameters object. Therefore, the
javax.net.ssl package does not define any
subinterfaces of this interface, and it is never used with the
default provider. Third-party or future providers may use it,
however.
public interface ManagerFactoryParameters {
}
Implementations
CertPathTrustManagerParameters,
KeyStoreBuilderParameters
Passed To
KeyManagerFactory.init( ),
KeyManagerFactorySpi.engineInit( ),
TRustManagerFactory.init( ),
TRustManagerFactorySpi.engineInit( )
|