Interface VerifyCertificateCallback.Params
- Enclosing interface:
- VerifyCertificateCallback
public static interface VerifyCertificateCallback.Params
The parameters of the
VerifyCertificateCallback.-
Method Summary
Modifier and TypeMethodDescriptiondefault CertificateReturns the certificate that is requested to be verified.default Hosthost()Returns the host name of the SSL server that requests the certificate verification.default List<Certificate>Returns the list of intermediate certificates in the chain of the validated certificate.default List<CertVerificationError>Returns the list of errors found by the default SSL certificate verifier.default List<CertVerificationStatus>Deprecated, for removal: This API element is subject to removal in a future version.
-
Method Details
-
host
Returns the host name of the SSL server that requests the certificate verification. -
certificate
Returns the certificate that is requested to be verified. -
intermediateCertificates
Returns the list of intermediate certificates in the chain of the validated certificate. -
verificationErrors
Returns the list of errors found by the default SSL certificate verifier.- Since:
- 7.26
-
verificationStatuses
@Deprecated(since="7.26", forRemoval=true) default List<CertVerificationStatus> verificationStatuses()Deprecated, for removal: This API element is subject to removal in a future version.in favor ofverificationErrors()Returns the list of error codes found by the default SSL certificate verifier.
-
verificationErrors()