java.security.cert
public abstract class X509CRLEntry extends Object implements X509Extension
Since: JDK 1.2
Constructor Summary | |
---|---|
X509CRLEntry()
Creates a new X509CRLEntry |
Method Summary | |
---|---|
boolean | equals(Object other)
Compares this X509CRLEntry to other. |
abstract byte[] | getEncoded()
Gets the DER ASN.1 encoded format for this CRL Entry,
the inner SEQUENCE. |
abstract Date | getRevocationDate()
Gets the revocation date in revocationDate for
this X509CRLEntry. |
abstract BigInteger | getSerialNumber()
Gets the serial number for userCertificate in
this X509CRLEntry. |
abstract boolean | hasExtensions()
Checks if this X509CRLEntry has extensions. |
int | hashCode()
Returns a hash code for this X509CRLEntry in its encoded
form. |
abstract String | toString()
Returns a string that represents this X509CRLEntry. |
Parameters: other An Object to test for equality
Returns: true if equal, false otherwise
Returns: byte array containg encoded form
Throws: CRLException if an error occurs
Returns: the revocation date for this X509CRLEntry.
Returns: the serial number for this X509CRLEntry.
Returns: true if it has extensions, false otherwise
Returns: A hash code of this class
Returns: a string representing this X509CRLEntry.