Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
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 CRL s.

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

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.