Class TimestampInformation
-
- All Implemented Interfaces:
public final class TimestampInformation
A structure that contains information about a digital signature timestamp.
-
-
Field Summary
Fields Modifier and Type Field Description private final X509CertificateData
signingCertificate
private final Date
trustedDate
-
Constructor Summary
Constructors Constructor Description TimestampInformation(X509CertificateData signingCertificate, Date trustedDate)
-
Method Summary
Modifier and Type Method Description final X509CertificateData
getSigningCertificate()
Returns a reference to the certificate that signed this trusted timestamp. final Date
getTrustedDate()
-
-
Constructor Detail
-
TimestampInformation
TimestampInformation(X509CertificateData signingCertificate, Date trustedDate)
-
-
Method Detail
-
getSigningCertificate
final X509CertificateData getSigningCertificate()
Returns a reference to the certificate that signed this trusted timestamp. From the signing certificate of a timestamp you can get information like the organization that issued this timestamp, or the date range when it is valid, for example.
-
getTrustedDate
final Date getTrustedDate()
-
-
-
-