home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / java / security / cert / CRL.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  353 b   |  18 lines

  1. package java.security.cert;
  2.  
  3. public abstract class CRL {
  4.    private String type;
  5.  
  6.    protected CRL(String var1) {
  7.       this.type = var1;
  8.    }
  9.  
  10.    public final String getType() {
  11.       return this.type;
  12.    }
  13.  
  14.    public abstract String toString();
  15.  
  16.    public abstract boolean isRevoked(Certificate var1);
  17. }
  18.