public class BasicPKIXValidationInformation extends Object implements PKIXValidationInformation
PKIXValidationInformation.| Modifier and Type | Field and Description |
|---|---|
private Collection<X509Certificate> |
trustAnchors
Certs used as the trust anchors.
|
private Collection<X509CRL> |
trustedCRLs
CRLs used during validation.
|
private Integer |
verificationDepth
Max verification depth during PKIX validation.
|
| Constructor and Description |
|---|
BasicPKIXValidationInformation(Collection<X509Certificate> anchors,
Collection<X509CRL> crls,
Integer depth)
Constructor.
|
| Modifier and Type | Method and Description |
|---|---|
Collection<X509Certificate> |
getCertificates()
Gets the certificate trust anchors used during PKIX validation.
|
Collection<X509CRL> |
getCRLs()
Gets the CRLs used during PKIX validation.
|
Integer |
getVerificationDepth()
Gets the maximum allowable trust chain verification depth.
|
private Collection<X509Certificate> trustAnchors
private Collection<X509CRL> trustedCRLs
private Integer verificationDepth
public BasicPKIXValidationInformation(Collection<X509Certificate> anchors, Collection<X509CRL> crls, Integer depth)
anchors - certs used as trust anchors during validationcrls - CRLs used during validationdepth - max verification path depthpublic Collection<X509CRL> getCRLs()
getCRLs in interface PKIXValidationInformationpublic Collection<X509Certificate> getCertificates()
getCertificates in interface PKIXValidationInformationpublic Integer getVerificationDepth()
getVerificationDepth in interface PKIXValidationInformationCopyright © 1999-2014. All Rights Reserved.