Interface MultipleRevocationSource<R extends Revocation>
- Type Parameters:
R- implementation ofRevocation(CRL or OCSP) for the current revocation source
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
CAdESCRLSource, CAdESOCSPSource, CMSCRLSource, CMSOCSPSource, EvidenceRecordCRLSource, EvidenceRecordOCSPSource, ExternalResourcesCRLSource, ExternalResourcesOCSPSource, FileCacheCRLSource, FileCacheOCSPSource, FileRevocationSource, JAdESCRLSource, JAdESOCSPSource, JdbcCacheCRLSource, JdbcCacheOCSPSource, JdbcRevocationSource, ListRevocationSource, OfflineCRLSource, OfflineOCSPSource, OfflineRevocationSource, PAdESCRLSource, PAdESOCSPSource, PdfCmsCRLSource, PdfCmsOCSPSource, PdfCompositeDssDictCRLSource, PdfCompositeDssDictOCSPSource, PdfDssDictCRLSource, PdfDssDictOCSPSource, RepositoryRevocationSource, TimestampCRLSource, TimestampOCSPSource, XAdESCRLSource, XAdESOCSPSource
This interface allows to retrieve all revocation data for a given
certificate.
Several implementations are available based on CRL and OCSP.
-
Method Summary
Modifier and TypeMethodDescriptiongetRevocationTokens(CertificateToken certificateToken, CertificateToken issuerCertificateToken) This method retrieves a list ofRevocationTokenfor the certificateToken
-
Method Details
-
getRevocationTokens
List<RevocationToken<R>> getRevocationTokens(CertificateToken certificateToken, CertificateToken issuerCertificateToken) This method retrieves a list ofRevocationTokenfor the certificateToken- Parameters:
certificateToken- TheCertificateTokenfor which the request is madeissuerCertificateToken- TheCertificateTokenwhich is the issuer of the certificateToken- Returns:
- a list of
RevocationToken
-