API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.security.cert. CertPathValidator View Source
Author(s)
Yassir Elley
Since
1.4
Version
1.13 04/21/06
Serial
Hierarchy
 Object
      CertPathValidator
Implements
Subclasses
Description
public class CertPathValidator
  A class for validating certification paths (also known as certificate chains).
See also:    CertPath
Constructors
protected CertPathValidator (CertPathValidatorSpi validatorSpi, Provider provider, String algorithm)
  Creates a CertPathValidator object of the given algorithm, and encapsulates the given provider implementation (SPI object) in it.
Methods
Hide/Show inherited methods
publicfinal String getAlgorithm ()
  Returns the algorithm name of this CertPathValidator.
publicfinalstatic String getDefaultType ()
  Returns the default CertPathValidator type as specified in the Java security properties file, or the string "PKIX" if no such property exists.
publicstatic CertPathValidator getInstance (String algorithm) throws NoSuchAlgorithmException
  Returns a CertPathValidator object that implements the specified algorithm.
publicstatic CertPathValidator getInstance (String algorithm, Provider provider) throws NoSuchAlgorithmException
  Returns a CertPathValidator object that implements the specified algorithm.
publicstatic CertPathValidator getInstance (String algorithm, String provider) throws NoSuchAlgorithmException NoSuchProviderException
  Returns a CertPathValidator object that implements the specified algorithm.
publicfinal Provider getProvider ()
  Returns the Provider of this CertPathValidator.
publicfinal CertPathValidatorResult validate (CertPath certPath, CertPathParameters params) throws CertPathValidatorException InvalidAlgorithmParameterException
  Validates the specified certification path using the specified algorithm parameter set.
Fields
Hide/Show inherited fields
Nested Classes
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar