java.security.cert
abstract public class: CRL [javadoc |
source]
java.lang.Object
java.security.cert.CRL
Direct Known Subclasses:
X509CRL
This class is an abstraction of certificate revocation lists (CRLs) that
have different formats but important common uses. For example, all CRLs
share the functionality of listing revoked certificates, and can be queried
on whether or not they list a given certificate.
Specialized CRL types can be defined by subclassing off of this abstract
class.
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from java.security.cert.CRL Detail: |
public final String getType() {
return this.type;
}
Returns the type of this CRL. |
abstract public boolean isRevoked(Certificate cert)
Checks whether the given certificate is on this CRL. |
abstract public String toString()
Returns a string representation of this CRL. |