Package java.security.cert
Interface CRLSelector
-
- All Superinterfaces:
Cloneable
- All Known Implementing Classes:
X509CRLSelector,X509CRLStoreSelector
public interface CRLSelector extends Cloneable
The interface specification for determining whether a CRL meets some criteria to select CRL objects among a set ofCRLs.The implementations of this interface are typically used to define the criteria for selecting
CRLs from aCertStore.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Objectclone()Clones thisCRLSelectorinstance.booleanmatch(CRL crl)Checks whether the defined criteria of this instance match the specified CRL.
-
-
-
Method Detail
-
clone
Object clone()
Clones thisCRLSelectorinstance.- Returns:
- the cloned instance.
-
match
boolean match(CRL crl)
Checks whether the defined criteria of this instance match the specified CRL.- Parameters:
crl- the CRL to be evaluated.- Returns:
trueif the CRL matches the criteria,falseotherwise.
-
-