Index (Frames) | Index (No Frames) | Package | Package Tree | Tree
java.security.cert

Class CRL

java.lang.Object
|
+--java.security.cert.CRL


public abstract class CRL

extends Object

Certificate Revocation List class for managing CRLs that have different formats but the same general use. They all serve as lists of revoked certificates and can be queried for a given certificate. Specialized CRLs extend this class.

Since:Author:

Constructor Summary

CRL(java.lang.String type)

Creates a new CRL for the specified type.

Method Summary

java.lang.StringgetType()

Returns the CRL type.
booleanisRevoked(java.security.cert.Certificate cert)

Determines whether or not the specified Certificate is revoked.
java.lang.StringtoString()

Returns a string representing the CRL.

Constructor Details

CRL

protected CRL(java.lang.String type)

Creates a new CRL for the specified type. An example is "X.509".

Parameters:


Method Details

getType

public final String getType()

Returns the CRL type.

Returns:


isRevoked

public boolean isRevoked(java.security.cert.Certificate cert)

Determines whether or not the specified Certificate is revoked.

Parameters:

Returns:


toString

public String toString()

Returns a string representing the CRL.

Returns: