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 getRevoked-Certificate( ) 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 X509CRLEntry(  );

    // Instance Methods
    public boolean equals(Object);
    public abstract Set getCriticalExtensionOIDs(  );
    public abstract byte[] getEncoded(  );
    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 int hashCode(  );
    public abstract String toString(  );
}

See also

Certificate, X509CRL, X509Extension

Get Java Security, 2nd Edition 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.