- 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 Summary
ConstructorDescriptionPKIXCertPathBuilderResult
(CertPath certPath, TrustAnchor trustAnchor, PolicyNode policyTree, PublicKey subjectPublicKey) Creates an instance ofPKIXCertPathBuilderResult
containing the specified parameters. -
Method Summary
Modifier and TypeMethodDescriptionReturns the built and validated certification path.toString()
Return a printable representation of thisPKIXCertPathBuilderResult
.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) Creates an instance ofPKIXCertPathBuilderResult
containing the specified parameters.- Parameters:
certPath
- the validatedCertPath
trustAnchor
- aTrustAnchor
describing the CA that served as a trust anchor for the certification pathpolicyTree
- the immutable valid policy tree, ornull
if there are no valid policiessubjectPublicKey
- the public key of the subject- Throws:
NullPointerException
- if thecertPath
,trustAnchor
orsubjectPublicKey
parameters arenull
-
-
Method Details
-
getCertPath
Returns the built and validated certification path. TheCertPath
object does not include the trust anchor. Instead, use thegetTrustAnchor()
method to obtain theTrustAnchor
that served as the trust anchor for the certification path.- Specified by:
getCertPath
in interfaceCertPathBuilderResult
- Returns:
- the built and validated
CertPath
(nevernull
)
-
toString
Return a printable representation of thisPKIXCertPathBuilderResult
.- Overrides:
toString
in classPKIXCertPathValidatorResult
- Returns:
- a
String
describing the contents of thisPKIXCertPathBuilderResult
-