Uses of Interface
eu.europa.esig.dss.spi.x509.revocation.RevocationSource
-
Uses of RevocationSource in eu.europa.esig.dss.service.crl
Classes in eu.europa.esig.dss.service.crl that implement RevocationSource Modifier and Type Class Description class
JdbcCacheCRLSource
CRLSource that retrieve information from a JDBC datasourceclass
OnlineCRLSource
Online CRL repository. -
Uses of RevocationSource in eu.europa.esig.dss.service.ocsp
Classes in eu.europa.esig.dss.service.ocsp that implement RevocationSource Modifier and Type Class Description class
JdbcCacheOCSPSource
OCSPSource that retrieve information from a JDBC data-source.class
OnlineOCSPSource
Online OCSP repository. -
Uses of RevocationSource in eu.europa.esig.dss.spi.x509
Classes in eu.europa.esig.dss.spi.x509 that implement RevocationSource Modifier and Type Class Description class
AlternateUrlsSourceAdapter<R extends Revocation>
This class allows to inject alternative urls to collect revocation data. -
Uses of RevocationSource in eu.europa.esig.dss.spi.x509.revocation
Subinterfaces of RevocationSource in eu.europa.esig.dss.spi.x509.revocation Modifier and Type Interface Description interface
OnlineRevocationSource<R extends Revocation>
Sub-interface for online sources ofRevocationToken
sinterface
RevocationSourceAlternateUrlsSupport<R extends Revocation>
Classes in eu.europa.esig.dss.spi.x509.revocation that implement RevocationSource Modifier and Type Class Description class
JdbcRevocationSource<R extends Revocation>
Abstract class to retrieve token from a JDBC datasourceclass
RepositoryRevocationSource<R extends Revocation>
Allows storing and retrieving of revocation data to/from a repository (e.g. -
Uses of RevocationSource in eu.europa.esig.dss.spi.x509.revocation.crl
Subinterfaces of RevocationSource in eu.europa.esig.dss.spi.x509.revocation.crl Modifier and Type Interface Description interface
CRLSource
Typed sub-interface which allows to collectCRLToken
. -
Uses of RevocationSource in eu.europa.esig.dss.spi.x509.revocation.ocsp
Subinterfaces of RevocationSource in eu.europa.esig.dss.spi.x509.revocation.ocsp Modifier and Type Interface Description interface
OCSPSource
Typed sub-interface which allows to collectOCSPToken
. -
Uses of RevocationSource in eu.europa.esig.dss.validation
Classes in eu.europa.esig.dss.validation that implement RevocationSource Modifier and Type Class Description class
OCSPAndCRLRevocationSource
Fetchs revocation data for a certificate by querying an OCSP server first and then a CRL server if no OCSP response could be retrieved.Methods in eu.europa.esig.dss.validation that return RevocationSource Modifier and Type Method Description RevocationSource<CRL>
CertificateVerifier. getCrlSource()
Returns the CRL source associated with this verifier.RevocationSource<CRL>
CommonCertificateVerifier. getCrlSource()
RevocationSource<OCSP>
CertificateVerifier. getOcspSource()
Returns the OCSP source associated with this verifier.RevocationSource<OCSP>
CommonCertificateVerifier. getOcspSource()
Methods in eu.europa.esig.dss.validation with parameters of type RevocationSource Modifier and Type Method Description void
CertificateVerifier. setCrlSource(RevocationSource<CRL> crlSource)
Defines the source of CRL used by this classvoid
CommonCertificateVerifier. setCrlSource(RevocationSource<CRL> crlSource)
void
CertificateVerifier. setOcspSource(RevocationSource<OCSP> ocspSource)
Defines the source of OCSP used by this classvoid
CommonCertificateVerifier. setOcspSource(RevocationSource<OCSP> ocspSource)
Constructors in eu.europa.esig.dss.validation with parameters of type RevocationSource Constructor Description OCSPAndCRLRevocationSource(RevocationSource<CRL> crlSource, RevocationSource<OCSP> ocspSource)
Build a OCSPAndCRLCertificateVerifier that will use the provided CRLSource and OCSPSource