-
- All Superinterfaces:
TlsTransportMappingConfig<java.security.cert.X509Certificate>
public interface X509TlsTransportMappingConfig extends TlsTransportMappingConfig<java.security.cert.X509Certificate>
TheTlsTransportMappingConfig
interface provides means to plug in aTlsTmSecurityCallback
into aTransportMapping
that usesX509Certificate
s for TLS.- Since:
- 3.6
- Author:
- Frank Fock
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.security.cert.PKIXRevocationChecker
getPKIXRevocationChecker()
Gets the (optional and possiblynull
) revocation checker for the cert path validation of X509 certificates.void
setPKIXRevocationChecker(java.security.cert.PKIXRevocationChecker pkixRevocationChecker)
Sets the (optional and possiblynull
) revocation checker for the cert path validation of X509 certificates.-
Methods inherited from interface org.snmp4j.transport.tls.TlsTransportMappingConfig
getKeyStore, getKeyStorePassword, getLocalCertificateAlias, getProtocolVersionPropertyName, getProtocolVersions, getSecurityCallback, getTrustStore, getTrustStorePassword, setKeyStore, setKeyStorePassword, setLocalCertificateAlias, setProtocolVersions, setSecurityCallback, setTrustStore, setTrustStorePassword
-
-
-
-
Method Detail
-
getPKIXRevocationChecker
java.security.cert.PKIXRevocationChecker getPKIXRevocationChecker()
Gets the (optional and possiblynull
) revocation checker for the cert path validation of X509 certificates.- Returns:
null
to disable cert path validation with CLR checking or a properly configured cert path checker instance.- Since:
- 3.6
-
setPKIXRevocationChecker
void setPKIXRevocationChecker(java.security.cert.PKIXRevocationChecker pkixRevocationChecker)
Sets the (optional and possiblynull
) revocation checker for the cert path validation of X509 certificates.- Parameters:
pkixRevocationChecker
-null
to disable cert path validation with CLR checking or a properly configured cert path checker instance.- Since:
- 3.6
-
-