FileDocCategorySizeDatePackage
CRLSelector.javaAPI DocAndroid 1.5 API1749Wed May 06 22:41:06 BST 2009java.security.cert

CRLSelector

public interface CRLSelector implements Cloneable
The interface specification for determining whether a CRL meets some criteria to select CRL objects among a set of {@code CRL}s.

The implementations of this interface are typically used to define the criteria for selecting {@code CRL}s from a {@code CertStore}.

see
CertStore
see
CRL
since
Android 1.0

Fields Summary
Constructors Summary
Methods Summary
public java.lang.Objectclone()
Clones this {@code CRLSelector} instance.

return
the cloned instance.
since
Android 1.0

public booleanmatch(java.security.cert.CRL crl)
Checks whether the defined criteria of this instance match the specified CRL.

param
crl the CRL to be evaluated.
return
{@code true} if the CRL matches the criteria, {@code false} otherwise.
since
Android 1.0