Name

Class java.security.cert.X509CRLEntry

Synopsis

A revoked certificate represents a certificate whose contained key is no longer safe to use. Instances of this class are returned by X509CRL’s getRevokedCertificate() method. You can examine the certificate’s revocation date and X.509 extensions.

Class Definition

public abstract class java.security.cert.X509CRLEntry
	extends java.lang.Object
	implements java.security.cert.X509Extension {

	// Constructors
	public RevokedCertificate();

	// Instance Methods
	public abstract Set getCriticalExtensionOIDs();
	public abstract byte[] getExtensionValue(String);
	public abstract Set getNonCriticalExtensionOIDs();
	public abstract Date getRevocationDate();
	public abstract BigInteger getSerialNumber();
	public abstract boolean hasExtensions();
	public abstract boolean hasUnsupportedCriticalExtension();
	public abstract String toString();
}

See also:

Certificate, X509CRL, X509Extension

Get Java Security now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.