Class Overview
Abstract base class for entries in a certificate revocation list (CRL).
Summary
Public Constructors |
|
X509CRLEntry()
Creates a new X509CRLEntry instance.
|
[Expand]
Inherited Methods |
From class
java.lang.Object
Object
|
clone()
Creates and returns a copy of this Object .
|
boolean
|
equals(Object o)
Compares this instance with the specified object and indicates if they
are equal.
|
void
|
finalize()
Invoked when the garbage collector has detected that this instance is no longer reachable.
|
final
Class<?>
|
getClass()
Returns the unique instance of Class that represents this
object's class.
|
int
|
hashCode()
Returns an integer hash code for this object.
|
final
void
|
notify()
Causes a thread which is waiting on this object's monitor (by means of
calling one of the wait() methods) to be woken up.
|
final
void
|
notifyAll()
Causes all threads which are waiting on this object's monitor (by means
of calling one of the wait() methods) to be woken up.
|
String
|
toString()
Returns a string containing a concise, human-readable description of this
object.
|
final
void
|
wait()
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object.
|
final
void
|
wait(long millis, int nanos)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
final
void
|
wait(long millis)
Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the
specified timeout expires.
|
|
From interface
java.security.cert.X509Extension
|
Public Constructors
public
X509CRLEntry
()
Creates a new X509CRLEntry
instance.
Public Methods
public
boolean
equals
(Object other)
Returns whether the specified object equals to this instance.
Parameters
other
| the object to compare. |
Returns
true
if the specified object equals to this instance,
otherwise false
.
public
X500Principal
getCertificateIssuer
()
Returns the issuer of the revoked certificate.
Returns
- the issuer of the revoked certificate, or
null
if the
issuer is equal to the CRL issuer.
public
abstract
byte[]
getEncoded
()
Returns this entry in ASN.1 DER encoded form.
Returns
- the encoded form of this entry.
public
abstract
Date
getRevocationDate
()
Returns the date when the certificate is revoked.
Returns
- the date when the certificate is revoked.
public
abstract
BigInteger
getSerialNumber
()
Returns the serial number of the revoked certificate.
Returns
- the serial number of the revoked certificate.
public
abstract
boolean
hasExtensions
()
Returns whether this CRL entry has extensions.
Returns
true
is this CRL entry has extensions, otherwise false
.
public
int
hashCode
()
Returns the hashcode of this instance.
Returns
- the hashcode of this instance.
public
abstract
String
toString
()
Returns a string representation of this instance.
Returns
- a string representation of this instance.