Class PKIXCertPathBuilderResult
- All Implemented Interfaces:
- Cloneable,- CertPathBuilderResult,- CertPathValidatorResult
Instances of PKIXCertPathBuilderResult are returned by
 the build method of CertPathBuilder
 objects implementing the PKIX algorithm.
 
All PKIXCertPathBuilderResult objects contain the
 certification path constructed by the build algorithm, the
 valid policy tree and subject public key resulting from the build
 algorithm, and a TrustAnchor describing the certification
 authority (CA) that served as a trust anchor for the certification path.
 
Concurrent Access
Unless otherwise specified, the methods defined in this class are not thread-safe. Multiple threads that need to access a single object concurrently should synchronize amongst themselves and provide the necessary locking. Multiple threads each manipulating separate objects need not synchronize.
- Since:
- 1.4
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionPKIXCertPathBuilderResult(CertPath certPath, TrustAnchor trustAnchor, PolicyNode policyTree, PublicKey subjectPublicKey) Creates an instance ofPKIXCertPathBuilderResultcontaining the specified parameters.
- 
Method SummaryModifier and TypeMethodDescriptionReturns the built and validated certification path.toString()Return a printable representation of thisPKIXCertPathBuilderResult.Methods declared in class java.security.cert.PKIXCertPathValidatorResultclone, getPolicyTree, getPublicKey, getTrustAnchorMethods declared in class java.lang.Objectequals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods declared in interface java.security.cert.CertPathBuilderResultclone
- 
Constructor Details- 
PKIXCertPathBuilderResultpublic PKIXCertPathBuilderResult(CertPath certPath, TrustAnchor trustAnchor, PolicyNode policyTree, PublicKey subjectPublicKey) Creates an instance ofPKIXCertPathBuilderResultcontaining the specified parameters.- Parameters:
- certPath- the validated- CertPath
- trustAnchor- a- TrustAnchordescribing the CA that served as a trust anchor for the certification path
- policyTree- the immutable valid policy tree, or- nullif there are no valid policies
- subjectPublicKey- the public key of the subject
- Throws:
- NullPointerException- if the- certPath,- trustAnchoror- subjectPublicKeyparameters are- null
 
 
- 
- 
Method Details- 
getCertPathReturns the built and validated certification path. TheCertPathobject does not include the trust anchor. Instead, use thegetTrustAnchor()method to obtain theTrustAnchorthat served as the trust anchor for the certification path.- Specified by:
- getCertPathin interface- CertPathBuilderResult
- Returns:
- the built and validated CertPath(nevernull)
 
- 
toStringReturn a printable representation of thisPKIXCertPathBuilderResult.- Overrides:
- toStringin class- PKIXCertPathValidatorResult
- Returns:
- a Stringdescribing the contents of thisPKIXCertPathBuilderResult
 
 
-