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
,ExternalResourcesCRLSource
,ExternalResourcesOCSPSource
,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 ofRevocationToken
for the certificateToken
-
Method Details
-
getRevocationTokens
List<RevocationToken<R>> getRevocationTokens(CertificateToken certificateToken, CertificateToken issuerCertificateToken) This method retrieves a list ofRevocationToken
for the certificateToken- Parameters:
certificateToken
- TheCertificateToken
for which the request is madeissuerCertificateToken
- TheCertificateToken
which is the issuer of the certificateToken- Returns:
- a list of
RevocationToken
-