public class PKIXCertPathBuilderResult extends PKIXCertPathValidatorResult implements CertPathBuilderResult
This class represents the successful result of the PKIX certification path builder algorithm. All certification paths that are built and returned using this algorithm are also validated according to the PKIX certification path validation algorithm.
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.
CertPathBuilderResult
public PKIXCertPathBuilderResult(CertPath certPath, TrustAnchor trustAnchor, PolicyNode policyTree, PublicKey subjectPublicKey)
Creates an instance of PKIXCertPathBuilderResult
containing the specified parameters.
certPath
- the validated CertPath
trustAnchor
- a TrustAnchor
describing the CA that served as a trust anchor for the certification pathpolicyTree
- the immutable valid policy tree, or null
if there are no valid policiessubjectPublicKey
- the public key of the subjectNullPointerException
- if the certPath
, trustAnchor
or subjectPublicKey
parameters are null
public CertPath getCertPath()
Returns the built and validated certification path. The 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.
getCertPath
in interface CertPathBuilderResult
CertPath
(never null
)public String toString()
Return a printable representation of this PKIXCertPathBuilderResult
.
toString
in class PKIXCertPathValidatorResult
String
describing the contents of this PKIXCertPathBuilderResult
© 1993–2017, 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.