API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.security.cert. CertificateFactorySpi View Source
Author(s)
Hemma Prafullchandra
Jan Luehe
Sean Mullan
Since
1.2
Version
1.21, 04/21/06
Serial
Hierarchy
 Object
      CertificateFactorySpi
Implements
Subclasses
Description
publicabstract abstract class CertificateFactorySpi
  This class defines the Service Provider Interface (SPI) for the CertificateFactory class.
Constructors
public CertificateFactorySpi ()
Methods
Hide/Show inherited methods
publicabstract Certificate engineGenerateCertificate (InputStream inStream) throws CertificateException
  Generates a certificate object and initializes it with the data read from the input stream inStream.
publicabstract Collection<Certificate> engineGenerateCertificates (InputStream inStream) throws CertificateException
  Returns a (possibly empty) collection view of the certificates read from the given input stream inStream.
public CertPath engineGenerateCertPath (InputStream inStream) throws CertificateException
  Generates a CertPath object and initializes it with the data read from the InputStream inStream.
public CertPath engineGenerateCertPath (InputStream inStream, String encoding) throws CertificateException
  Generates a CertPath object and initializes it with the data read from the InputStream inStream.
public CertPath engineGenerateCertPath (List<Certificate> certificates) throws CertificateException
  Generates a CertPath object and initializes it with a List of Certificates.
publicabstract CRL engineGenerateCRL (InputStream inStream) throws CRLException
  Generates a certificate revocation list (CRL) object and initializes it with the data read from the input stream inStream.
publicabstract Collection<CRL> engineGenerateCRLs (InputStream inStream) throws CRLException
  Returns a (possibly empty) collection view of the CRLs read from the given input stream inStream.
public Iterator<String> engineGetCertPathEncodings ()
  Returns an iteration of the CertPath encodings supported by this certificate factory, with the default encoding first.
Fields
Hide/Show inherited fields
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar