Package eu.europa.esig.dss.validation
Interface SignatureRevocationSource<T extends RevocationToken>
-
- All Known Implementing Classes:
CAdESCRLSource,CAdESOCSPSource,CMSCRLSource,CMSOCSPSource,ListCRLSource,ListOCSPSource,PAdESCRLSource,PAdESOCSPSource,SignatureCRLSource,SignatureOCSPSource,TimestampCRLSource,TimestampOCSPSource,XAdESCRLSource,XAdESOCSPSource
public interface SignatureRevocationSource<T extends RevocationToken>
-
-
Method Summary
Modifier and Type Method Description List<T>getAttributeRevocationValuesTokens()Retrieves the list of allRevocationTokens present in 'AttributeRevocationValues' element NOTE: Applicable only for XAdES revocation sourceList<T>getDSSDictionaryTokens()Retrieves the list of allRevocationTokens present in 'DSS' dictionary NOTE: Applicable only for PAdES revocation sourceList<T>getRevocationValuesTokens()Retrieves the list of allRevocationTokens present in 'RevocationValues' element NOTE: Applicable only for CAdES and XAdES revocation sourcesList<T>getTimestampRevocationValuesTokens()Retrieves the list of allRevocationTokens present in the Timestamp NOTE: Applicable only for CAdES revocation sourceList<T>getTimestampValidationDataTokens()Retrieves the list of allRevocationTokens present in 'TimestampValidationData' element NOTE: Applicable only for XAdES revocation sourceList<T>getVRIDictionaryTokens()Retrieves the list of allRevocationTokens present in 'VRI' dictionary NOTE: Applicable only for PAdES revocation source
-
-
-
Method Detail
-
getRevocationValuesTokens
List<T> getRevocationValuesTokens()
Retrieves the list of allRevocationTokens present in 'RevocationValues' element NOTE: Applicable only for CAdES and XAdES revocation sources- Returns:
- list of
RevocationTokens
-
getAttributeRevocationValuesTokens
List<T> getAttributeRevocationValuesTokens()
Retrieves the list of allRevocationTokens present in 'AttributeRevocationValues' element NOTE: Applicable only for XAdES revocation source- Returns:
- list of
RevocationTokens
-
getTimestampValidationDataTokens
List<T> getTimestampValidationDataTokens()
Retrieves the list of allRevocationTokens present in 'TimestampValidationData' element NOTE: Applicable only for XAdES revocation source- Returns:
- list of
RevocationTokens
-
getDSSDictionaryTokens
List<T> getDSSDictionaryTokens()
Retrieves the list of allRevocationTokens present in 'DSS' dictionary NOTE: Applicable only for PAdES revocation source- Returns:
- list of
RevocationTokens
-
getVRIDictionaryTokens
List<T> getVRIDictionaryTokens()
Retrieves the list of allRevocationTokens present in 'VRI' dictionary NOTE: Applicable only for PAdES revocation source- Returns:
- list of
RevocationTokens
-
getTimestampRevocationValuesTokens
List<T> getTimestampRevocationValuesTokens()
Retrieves the list of allRevocationTokens present in the Timestamp NOTE: Applicable only for CAdES revocation source- Returns:
- list of
RevocationTokens
-
-