Package com.itextpdf.signatures
Class VerificationOK
java.lang.Object
com.itextpdf.signatures.VerificationOK
Class that informs you that the verification of a Certificate succeeded using a specific CertificateVerifier and for a specific reason.
-
Field Summary
Modifier and TypeFieldDescriptionprotected X509Certificate
The certificate that was verified successfully.protected String
The reason why the certificate verified successfully.protected Class extends CertificateVerifier>
The CertificateVerifier that was used for verifying. -
Constructor Summary
ConstructorDescriptionVerificationOK
(X509Certificate certificate, Class extends CertificateVerifier> verifierClass, String message) Creates a VerificationOK object -
Method Summary
-
Field Details
-
certificate
The certificate that was verified successfully. -
verifierClass
The CertificateVerifier that was used for verifying. -
message
The reason why the certificate verified successfully.
-
-
Constructor Details
-
VerificationOK
public VerificationOK(X509Certificate certificate, Class extends CertificateVerifier> verifierClass, String message) Creates a VerificationOK object- Parameters:
-
certificate
- the certificate that was successfully verified -
verifierClass
- the class that was used for verification -
message
- the reason why the certificate could be verified
-
-
Method Details