to top
Android APIs
Added in API level 1
public interface

CRLSelector

implements Cloneable
java.security.cert.CRLSelector
Known Indirect Subclasses

Class Overview


The interface specification for determining whether a CRL meets some criteria to select CRL objects among a set of CRLs.

The implementations of this interface are typically used to define the criteria for selecting CRLs from a CertStore.

See Also

Summary


Public Methods
abstract Object clone()
Clones this CRLSelector instance.
abstract boolean match(CRL crl)
Checks whether the defined criteria of this instance match the specified CRL.

Public Methods


public abstract Object clone ()

Added in API level 1

Clones this CRLSelector instance.

Returns
  • the cloned instance.

public abstract boolean match (CRL crl)

Added in API level 1

Checks whether the defined criteria of this instance match the specified CRL.

Parameters
crl the CRL to be evaluated.
Returns
  • true if the CRL matches the criteria, false otherwise.