public abstract class CRL extends Object
CertificateFactory
Modifier | Constructor and Description |
---|---|
protected |
CRL(String type)
Creates a new certificate revocation list of the specified type.
|
Modifier and Type | Method and Description |
---|---|
String |
getType()
Returns the type of this CRL.
|
abstract boolean |
isRevoked(Certificate cert)
Returns whether the specified certificate is revoked by this CRL.
|
abstract String |
toString()
Returns the string representation of this instance.
|
protected CRL(String type)
type
- the type for the CRL.public final String getType()
public abstract boolean isRevoked(Certificate cert)
cert
- the certificate to check.true
if the certificate is revoked by this CRL, otherwise
false
.