| java.lang.Object java.security.cert.CRL
All known Subclasses: java.security.cert.X509CRL,
CRL | abstract public class CRL (Code) | | This class represents Certificate Revocation Lists (CRLs). They are used to
indicate that a given Certificate has expired already.
See Also: CertificateFactory |
Constructor Summary | |
protected | CRL(String type) |
Method Summary | |
final public String | getType() Answers the type of this CRL. | abstract public boolean | isRevoked(Certificate cert) Answers if a given Certificate has been revoked or not. | abstract public String | toString() Answers a string containing a concise, human-readable description of the
receiver. |
getType | final public String getType()(Code) | | Answers the type of this CRL.
String the type of this CRL. |
isRevoked | abstract public boolean isRevoked(Certificate cert)(Code) | | Answers if a given Certificate has been revoked or not.
Parameters: cert - Certificate The Certificate to test true if the certificate has been revoked false if the certificatehas not been revoked yet |
toString | abstract public String toString()(Code) | | Answers a string containing a concise, human-readable description of the
receiver.
a printable representation for the receiver. |
|
|