Interface RevocationSource<R extends Revocation>
- Type Parameters:
R
- implementation ofRevocation
(CRL or OCSP) for the current revocation source
- All Superinterfaces:
Serializable
- All Known Subinterfaces:
CRLSource
,OCSPSource
,OnlineRevocationSource<R>
,RevocationSourceAlternateUrlsSupport<R>
- All Known Implementing Classes:
AlternateUrlsSourceAdapter
,CAdESCRLSource
,CAdESOCSPSource
,CMSCRLSource
,CMSOCSPSource
,ExternalResourcesCRLSource
,ExternalResourcesOCSPSource
,JAdESCRLSource
,JAdESOCSPSource
,JdbcCacheCRLSource
,JdbcCacheOCSPSource
,JdbcRevocationSource
,OfflineCRLSource
,OfflineOCSPSource
,OfflineRevocationSource
,OnlineCRLSource
,OnlineOCSPSource
,PAdESCRLSource
,PAdESOCSPSource
,PdfCmsCRLSource
,PdfCmsOCSPSource
,PdfCompositeDssDictCRLSource
,PdfCompositeDssDictOCSPSource
,PdfDssDictCRLSource
,PdfDssDictOCSPSource
,RepositoryRevocationSource
,TimestampCRLSource
,TimestampOCSPSource
,XAdESCRLSource
,XAdESOCSPSource
This interface allows revocation data retrieving for a given certificate.
Several implementations are available based on CRL and OCSP.
-
Method Summary
Modifier and TypeMethodDescriptiongetRevocationToken
(CertificateToken certificateToken, CertificateToken issuerCertificateToken) This method retrieves aRevocationToken
for the certificateToken
-
Method Details
-
getRevocationToken
RevocationToken<R> getRevocationToken(CertificateToken certificateToken, CertificateToken issuerCertificateToken) This method retrieves aRevocationToken
for the certificateToken- Parameters:
certificateToken
- TheCertificateToken
for which the request is madeissuerCertificateToken
- TheCertificateToken
which is the issuer of the certificateToken- Returns:
- an instance of
RevocationToken
-