API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.security.cert. CertStore View Source
Author(s)
Sean Mullan, Steve Hanna
Since
1.4
Version
1.17 04/21/06
Serial
Hierarchy
 Object
      CertStore
Implements
Subclasses
Description
public class CertStore
  A class for retrieving Certificates and CRLs from a repository.
See also:   
Constructors
protected CertStore (CertStoreSpi storeSpi, Provider provider, String type, CertStoreParameters params)
  Creates a CertStore object of the given type, and encapsulates the given provider implementation (SPI object) in it.
Methods
Hide/Show inherited methods
publicfinal Collection<Certificate> getCertificates (CertSelector selector) throws CertStoreException
  Returns a Collection of Certificates that match the specified selector.
publicfinal CertStoreParameters getCertStoreParameters ()
  Returns the parameters used to initialize this CertStore.
publicfinal Collection<CRL> getCRLs (CRLSelector selector) throws CertStoreException
  Returns a Collection of CRLs that match the specified selector.
publicfinalstatic String getDefaultType ()
  Returns the default CertStore type as specified in the Java security properties file, or the string "LDAP" if no such property exists.
publicstatic CertStore getInstance (String type, CertStoreParameters params) throws InvalidAlgorithmParameterException NoSuchAlgorithmException
  Returns a CertStore object that implements the specified CertStore type and is initialized with the specified parameters.
publicstatic CertStore getInstance (String type, CertStoreParameters params, Provider provider) throws NoSuchAlgorithmException InvalidAlgorithmParameterException
  Returns a CertStore object that implements the specified CertStore type.
publicstatic CertStore getInstance (String type, CertStoreParameters params, String provider) throws InvalidAlgorithmParameterException NoSuchAlgorithmException NoSuchProviderException
  Returns a CertStore object that implements the specified CertStore type.
publicfinal Provider getProvider ()
  Returns the provider of this CertStore.
publicfinal String getType ()
  Returns the type of this CertStore.
Fields
Hide/Show inherited fields
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar