Added in API level 1

X509CRLEntry

public abstract class X509CRLEntry
extends Object implements X509Extension

java.lang.Object
   ↳ java.security.cert.X509CRLEntry


Abstract class for a revoked certificate in a CRL (Certificate Revocation List). The ASN.1 definition for revokedCertificates is:

 revokedCertificates    SEQUENCE OF SEQUENCE  {
     userCertificate    CertificateSerialNumber,
     revocationDate     ChoiceOfTime,
     crlEntryExtensions Extensions OPTIONAL
                        -- if present, must be v2
 }  OPTIONAL

 CertificateSerialNumber  ::=  INTEGER

 Extensions  ::=  SEQUENCE SIZE (1..MAX) OF Extension

 Extension  ::=  SEQUENCE  {
     extnId        OBJECT IDENTIFIER,
     critical      BOOLEAN DEFAULT FALSE,
     extnValue     OCTET STRING
                   -- contains a DER encoding of a value
                   -- of the type registered for use with
                   -- the extnId object identifier value
 }
 

Summary

Public constructors

X509CRLEntry()

Public methods

boolean equals(Object other)

Compares this CRL entry for equality with the given object.

X500Principal getCertificateIssuer()

Get the issuer of the X509Certificate described by this entry.

abstract byte[] getEncoded()

Returns the ASN.1 DER-encoded form of this CRL Entry, that is the inner SEQUENCE.

abstract Date getRevocationDate()

Gets the revocation date from this X509CRLEntry, the revocationDate.

CRLReason getRevocationReason()

Returns the reason the certificate has been revoked, as specified in the Reason Code extension of this CRL entry.

abstract BigInteger getSerialNumber()

Gets the serial number from this X509CRLEntry, the userCertificate.

abstract boolean hasExtensions()

Returns true if this CRL entry has extensions.

int hashCode()

Returns a hashcode value for this CRL entry from its encoded form.

abstract String toString()

Returns a string representation of this CRL entry.

Inherited methods

Object clone()

Creates and returns a copy of this object.

boolean equals(Object obj)

Indicates whether some other object is "equal to" this one.

void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

final Class<?> getClass()

Returns the runtime class of this Object.

int hashCode()

Returns a hash code value for the object.

final void notify()

Wakes up a single thread that is waiting on this object's monitor.

final void notifyAll()

Wakes up all threads that are waiting on this object's monitor.

String toString()

Returns a string representation of the object.

final void wait(long timeoutMillis, int nanos)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait(long timeoutMillis)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait()

Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

abstract Set<String> getCriticalExtensionOIDs()

Gets a Set of the OID strings for the extension(s) marked CRITICAL in the certificate/CRL managed by the object implementing this interface.

abstract byte[] getExtensionValue(String oid)

Gets the DER-encoded OCTET string for the extension value (extnValue) identified by the passed-in oid String.

abstract Set<String> getNonCriticalExtensionOIDs()

Gets a Set of the OID strings for the extension(s) marked NON-CRITICAL in the certificate/CRL managed by the object implementing this interface.

abstract boolean hasUnsupportedCriticalExtension()

Check if there is a critical extension that is not supported.

Public constructors

X509CRLEntry

Added in API level 1
public X509CRLEntry ()

Public methods

equals

Added in API level 1
public boolean equals (Object other)

Compares this CRL entry for equality with the given object. If the other object is an instanceof X509CRLEntry, then its encoded form (the inner SEQUENCE) is retrieved and compared with the encoded form of this CRL entry.

Parameters
other Object: the object to test for equality with this CRL entry.

Returns
boolean true iff the encoded forms of the two CRL entries match, false otherwise.

getCertificateIssuer

Added in API level 1
public X500Principal getCertificateIssuer ()

Get the issuer of the X509Certificate described by this entry. If the certificate issuer is also the CRL issuer, this method returns null.

This method is used with indirect CRLs. The default implementation always returns null. Subclasses that wish to support indirect CRLs should override it.

Returns
X500Principal the issuer of the X509Certificate described by this entry or null if it is issued by the CRL issuer.

getEncoded

Added in API level 1
public abstract byte[] getEncoded ()

Returns the ASN.1 DER-encoded form of this CRL Entry, that is the inner SEQUENCE.

Returns
byte[] the encoded form of this certificate

Throws
CRLException if an encoding error occurs.

getRevocationDate

Added in API level 1
public abstract Date getRevocationDate ()

Gets the revocation date from this X509CRLEntry, the revocationDate.

Returns
Date the revocation date.

getRevocationReason

Added in API level 24
public CRLReason getRevocationReason ()

Returns the reason the certificate has been revoked, as specified in the Reason Code extension of this CRL entry.

Returns
CRLReason the reason the certificate has been revoked, or null if this CRL entry does not have a Reason Code extension

getSerialNumber

Added in API level 1
public abstract BigInteger getSerialNumber ()

Gets the serial number from this X509CRLEntry, the userCertificate.

Returns
BigInteger the serial number.

hasExtensions

Added in API level 1
public abstract boolean hasExtensions ()

Returns true if this CRL entry has extensions.

Returns
boolean true if this entry has extensions, false otherwise.

hashCode

Added in API level 1
public int hashCode ()

Returns a hashcode value for this CRL entry from its encoded form.

Returns
int the hashcode value.

toString

Added in API level 1
public abstract String toString ()

Returns a string representation of this CRL entry.

Returns
String a string representation of this CRL entry.