FileDocCategorySizeDatePackage
CertStoreSpi.javaAPI DocAndroid 1.5 API2833Wed May 06 22:41:06 BST 2009java.security.cert

CertStoreSpi

public abstract class CertStoreSpi extends Object
The Service Provider Interface (SPI) definition for the {@code CertStore} class to be implemented by security providers.
since
Android 1.0

Fields Summary
Constructors Summary
public CertStoreSpi(CertStoreParameters params)
Creates a new {@code CertStoreSpi}.

param
params the initialization parameters.
throws
InvalidAlgorithmParameterException if the specified initialization parameters cannot be used to initialize this instance.
since
Android 1.0

    
Methods Summary
public abstract java.util.CollectionengineGetCRLs(java.security.cert.CRLSelector selector)
Returns the list of {@code CRL}s for the specified {@code CRLSelector} from this instance.

param
selector the selector containing the criteria to search for certificate revocation lists in instance.
return
the list of {@code CRL}s that match the criteria of the specified selector
throws
CertStoreException if error(s) occur.
since
Android 1.0

public abstract java.util.CollectionengineGetCertificates(java.security.cert.CertSelector selector)
Returns the list of {@code Certificate}s for the specified {@code CertSelector} from this instance.

param
selector the selector containing the criteria to search for certificates in this instance.
return
the list of {@code Certificate}s that match the criteria of the specified selector.
throws
CertStoreException if error(s) occur.
since
Android 1.0