public abstract class SimpleTrustManagerFactory
extends javax.net.ssl.TrustManagerFactory
TrustManagerFactory
.Modifier | Constructor and Description |
---|---|
protected |
SimpleTrustManagerFactory()
Creates a new instance.
|
protected |
SimpleTrustManagerFactory(java.lang.String name)
Creates a new instance.
|
Modifier and Type | Method and Description |
---|---|
protected abstract javax.net.ssl.TrustManager[] |
engineGetTrustManagers()
Returns one trust manager for each type of trust material.
|
protected abstract void |
engineInit(java.security.KeyStore keyStore)
Initializes this factory with a source of certificate authorities and related trust material.
|
protected abstract void |
engineInit(javax.net.ssl.ManagerFactoryParameters managerFactoryParameters)
Initializes this factory with a source of provider-specific key material.
|
protected SimpleTrustManagerFactory()
protected SimpleTrustManagerFactory(java.lang.String name)
name
- the name of this TrustManagerFactory
protected abstract void engineInit(java.security.KeyStore keyStore) throws java.lang.Exception
java.lang.Exception
TrustManagerFactorySpi.engineInit(KeyStore)
protected abstract void engineInit(javax.net.ssl.ManagerFactoryParameters managerFactoryParameters) throws java.lang.Exception
java.lang.Exception
TrustManagerFactorySpi.engineInit(ManagerFactoryParameters)
protected abstract javax.net.ssl.TrustManager[] engineGetTrustManagers()
TrustManagerFactorySpi.engineGetTrustManagers()
Copyright © 2008–2018 The Netty Project. All rights reserved.