Class PKIXCertPathBuilderResult
- All Implemented Interfaces:
-
Cloneable,CertPathBuilderResult,CertPathValidatorResult
public class PKIXCertPathBuilderResult extends PKIXCertPathValidatorResult implements CertPathBuilderResult
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 Summary
| Constructor | Description |
|---|---|
PKIXCertPathBuilderResult |
Creates an instance of PKIXCertPathBuilderResult containing the specified parameters. |
Method Summary
| Modifier and Type | Method | Description |
|---|---|---|
CertPath |
getCertPath() |
Returns the built and validated certification path. |
String |
toString() |
Return a printable representation of this PKIXCertPathBuilderResult. |
Methods declared in class java.security.cert.PKIXCertPathValidatorResult
clone, getPolicyTree, getPublicKey, getTrustAnchor
Methods declared in class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods declared in interface java.security.cert.CertPathBuilderResult
clone
Constructor Details
PKIXCertPathBuilderResult
public PKIXCertPathBuilderResult(CertPath certPath, TrustAnchor trustAnchor, PolicyNode policyTree, PublicKey subjectPublicKey)
PKIXCertPathBuilderResult containing the specified parameters.- Parameters:
-
certPath- the validatedCertPath -
trustAnchor- aTrustAnchordescribing the CA that served as a trust anchor for the certification path -
policyTree- the immutable valid policy tree, ornullif there are no valid policies -
subjectPublicKey- the public key of the subject - Throws:
-
NullPointerException- if thecertPath,trustAnchororsubjectPublicKeyparameters arenull
Method Details
getCertPath
public CertPath getCertPath()
CertPath object does not include the trust anchor. Instead, use the getTrustAnchor() method to obtain the TrustAnchor that served as the trust anchor for the certification path.- Specified by:
-
getCertPathin interfaceCertPathBuilderResult - Returns:
- the built and validated
CertPath(nevernull)
toString
public String toString()
PKIXCertPathBuilderResult.- Overrides:
-
toStringin classPKIXCertPathValidatorResult - Returns:
- a
Stringdescribing the contents of thisPKIXCertPathBuilderResult
© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/security/cert/PKIXCertPathBuilderResult.html