This class represents the successful result of the PKIX certification
path validation algorithm.
A specification of the result of a certification path validator algorithm.
The purpose of this interface is to group (and provide type safety
for) all certification path validator results. All results returned
by the CertPathValidator.validate
method must implement this interface.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-07-10 UTC."],[],["`CertPathValidatorResult` is an interface for results from certification path validator algorithms. Its key function is to provide type safety for these results, requiring all results from `CertPathValidator.validate` to implement it. It features one method, `clone()`, which creates an independent copy of the result object. Indirect subclasses include `PKIXCertPathBuilderResult` and `PKIXCertPathValidatorResult`, representing successful outcomes of PKIX path building and validation, respectively.\n"]]