Interface MultipleRevocationSource<R extends Revocation>
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
CAdESCRLSource
,CAdESOCSPSource
,CMSCRLSource
,CMSOCSPSource
,ExternalResourcesCRLSource
,ExternalResourcesOCSPSource
,ListRevocationSource
,OfflineCRLSource
,OfflineOCSPSource
,OfflineRevocationSource
,PAdESCRLSource
,PAdESOCSPSource
,TimestampCRLSource
,TimestampOCSPSource
,XAdESCRLSource
,XAdESOCSPSource
public interface MultipleRevocationSource<R extends Revocation> extends Serializable
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 Type Method Description List<RevocationToken<R>>
getRevocationTokens(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
-