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 Summary
ConstructorsConstructorDescriptionPKIXCertPathBuilderResult(CertPath certPath, TrustAnchor trustAnchor, PolicyNode policyTree, PublicKey subjectPublicKey) Creates an instance ofPKIXCertPathBuilderResultcontaining 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 PKIXCertPathValidatorResult
clone, getPolicyTree, getPublicKey, getTrustAnchorModifier and TypeMethodDescriptionclone()Returns a copy of this object.Returns the root node of the valid policy tree resulting from the PKIX certification path validation algorithm.Returns the public key of the subject (target) of the certification path, including any inherited public key parameters if applicable.Returns theTrustAnchordescribing the CA that served as a trust anchor for the certification path.Methods declared in class Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitModifier and TypeMethodDescriptionbooleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.Methods declared in interface CertPathBuilderResult
clone
-
Constructor Details
-
PKIXCertPathBuilderResult
public PKIXCertPathBuilderResult(CertPath certPath, TrustAnchor trustAnchor, PolicyNode policyTree, PublicKey subjectPublicKey) Creates an instance ofPKIXCertPathBuilderResultcontaining the specified parameters.- Parameters:
certPath- the validatedCertPathtrustAnchor- aTrustAnchordescribing the CA that served as a trust anchor for the certification pathpolicyTree- the immutable valid policy tree, ornullif there are no valid policiessubjectPublicKey- the public key of the subject- Throws:
NullPointerException- if thecertPath,trustAnchororsubjectPublicKeyparameters arenull
-
-
Method Details
-
getCertPath
Returns 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 interfaceCertPathBuilderResult- Returns:
- the built and validated
CertPath(nevernull)
-
toString
Return a printable representation of thisPKIXCertPathBuilderResult.- Overrides:
toStringin classPKIXCertPathValidatorResult- Returns:
- a
Stringdescribing the contents of thisPKIXCertPathBuilderResult
-