Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

java.security.cert
Class CRL  view CRL download CRL.java

java.lang.Object
  extended byjava.security.cert.CRL
Direct Known Subclasses:
X509CRL

public abstract class CRL
extends java.lang.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:
JDK 1.2

Field Summary
private  java.lang.String type
           
 
Constructor Summary
protected CRL(java.lang.String type)
          Creates a new CRL for the specified type.
 
Method Summary
 java.lang.String getType()
          Returns the CRL type.
abstract  boolean isRevoked(Certificate cert)
          Determines whether or not the specified Certificate is revoked.
abstract  java.lang.String toString()
          Returns a string representing the CRL.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

type

private java.lang.String type
Constructor Detail

CRL

protected CRL(java.lang.String type)
Creates a new CRL for the specified type. An example is "X.509".

Method Detail

getType

public final java.lang.String getType()
Returns the CRL type.


toString

public abstract java.lang.String toString()
Returns a string representing the CRL.


isRevoked

public abstract boolean isRevoked(Certificate cert)
Determines whether or not the specified Certificate is revoked.