- java.lang.Object
-
- java.security.cert.CertPathValidatorSpi
-
public abstract class CertPathValidatorSpi extends Object
The Service Provider Interface (SPI) for theCertPathValidator
class. AllCertPathValidator
implementations must include a class (the SPI class) that extends this class (CertPathValidatorSpi
) and implements all of its methods. In general, instances of this class should only be accessed through theCertPathValidator
class. For details, see the Java Cryptography Architecture.Concurrent Access
Instances of this class need not be protected against concurrent access from multiple threads. Threads that need to access a single
CertPathValidatorSpi
instance concurrently should synchronize amongst themselves and provide the necessary locking before calling the wrappingCertPathValidator
object.However, implementations of
CertPathValidatorSpi
may still encounter concurrency issues, since multiple threads each manipulating a differentCertPathValidatorSpi
instance need not synchronize.- Since:
- 1.4
-
-
Constructor Summary
Constructors Constructor and Description CertPathValidatorSpi()
The default constructor.
-
Method Summary
Methods Modifier and Type Method and Description abstract CertPathValidatorResult
engineValidate(CertPath certPath, CertPathParameters params)
Validates the specified certification path using the specified algorithm parameter set.
-
-
-
Method Detail
-
engineValidate
public abstract CertPathValidatorResult engineValidate(CertPath certPath, CertPathParameters params) throws CertPathValidatorException, InvalidAlgorithmParameterException
Validates the specified certification path using the specified algorithm parameter set.The
CertPath
specified must be of a type that is supported by the validation algorithm, otherwise anInvalidAlgorithmParameterException
will be thrown. For example, aCertPathValidator
that implements the PKIX algorithm validatesCertPath
objects of type X.509.- Parameters:
certPath
- theCertPath
to be validatedparams
- the algorithm parameters- Returns:
- the result of the validation algorithm
- Throws:
CertPathValidatorException
- if theCertPath
does not validateInvalidAlgorithmParameterException
- if the specified parameters or the type of the specifiedCertPath
are inappropriate for thisCertPathValidator
-
-
Document created the 11/06/2005, last modified the 04/03/2020
Source of the printed document:https://www.gaudry.be/en/java-api-rf-java/security/cert/certpathvalidatorspi.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.