Interface CRLSource
- All Superinterfaces:
RevocationSource<CRL>
,Serializable
- All Known Implementing Classes:
JdbcCacheCRLSource
,OnlineCRLSource
Typed sub-interface which allows collection of
CRLToken
(s). The validation
of a certificate requires the access to some CRLs. This information can be
found online, in a cache or even in the signature itself. This interface
provides an abstraction of a CRL data source.-
Method Summary
Modifier and TypeMethodDescriptiongetRevocationToken
(CertificateToken certificateToken, CertificateToken issuerCertificateToken) This method retrieves aRevocationToken
for the certificateToken
-
Method Details
-
getRevocationToken
CRLToken getRevocationToken(CertificateToken certificateToken, CertificateToken issuerCertificateToken) Description copied from interface:RevocationSource
This method retrieves aRevocationToken
for the certificateToken- Specified by:
getRevocationToken
in interfaceRevocationSource<CRL>
- Parameters:
certificateToken
- TheCertificateToken
for which the request is madeissuerCertificateToken
- TheCertificateToken
which is the issuer of the certificateToken- Returns:
- an instance of
RevocationToken
-