java.security.cert
public abstract class CRL extends Object
Since: JDK 1.2
Constructor Summary | |
---|---|
protected | CRL(String type)
Creates a new CRL for the specified type. |
Method Summary | |
---|---|
String | getType()
Returns the CRL type. |
abstract boolean | isRevoked(Certificate cert)
Determines whether or not the specified Certificate
is revoked. |
abstract String | toString()
Returns a string representing the CRL. |
Parameters: type the standard name for the CRL type.
Returns: a string representing the CRL type
Parameters: cert A certificate to check if it is revoked
Returns: true if the certificate is revoked, false otherwise.
Returns: a string representing the CRL.