FileDocCategorySizeDatePackage
CRL.javaAPI DocAndroid 1.5 API2189Wed May 06 22:41:06 BST 2009java.security.cert

CRL

public abstract class CRL extends Object
This class represents Certificate Revocation Lists (CRLs) maintained by a certificate authority. They are used to indicate that a given Certificate has expired and consequently has become invalid.
see
CertificateFactory
since
Android 1.0

Fields Summary
private final String
type
Constructors Summary
protected CRL(String type)
Creates a new certificate revocation list of the specified type.

param
type the type for the CRL.
since
Android 1.0

        this.type = type;
    
Methods Summary
public final java.lang.StringgetType()
Returns the type of this CRL.

return
the type of this CRL.
since
Android 1.0

        return type;
    
public abstract booleanisRevoked(java.security.cert.Certificate cert)
Returns whether the specified certificate is revoked by this CRL.

param
cert the certificate to check.
return
{@code true} if the certificate is revoked by this CRL, otherwise {@code false}.
since
Android 1.0

public abstract java.lang.StringtoString()
Returns the string representation of this instance.

return
the string representation of this instance.
since
Android 1.0