FileDocCategorySizeDatePackage
CertSelector.javaAPI DocAndroid 1.5 API1824Wed May 06 22:41:06 BST 2009java.security.cert

CertSelector

public interface CertSelector implements Cloneable
The interface specification to determine whether a {@code Certificate} meets some criteria.

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

see
CertStore
see
Certificate
since
Android 1.0

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

return
the cloned instance.
since
Android 1.0

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

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