|
|||||||||
| Home >> All >> java >> security >> [ cert overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.security.cert
Class CRL

java.lang.Objectjava.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.
|
|||||||||
| Home >> All >> java >> security >> [ cert overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
JAVADOC
java.security.cert.CRL