Class PKIXCertPathBuilderResult

java.lang.Object
java.security.cert.PKIXCertPathValidatorResult
java.security.cert.PKIXCertPathBuilderResult
All Implemented Interfaces:
Cloneable, CertPathBuilderResult, CertPathValidatorResult

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.

Since:
1.4
See Also:
  • Constructor Summary

    Constructors
    Constructor
    Description
    PKIXCertPathBuilderResult(CertPath certPath, TrustAnchor trustAnchor, PolicyNode policyTree, PublicKey subjectPublicKey)
    Creates an instance of PKIXCertPathBuilderResult containing the specified parameters.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the built and validated certification path.
    Return a printable representation of this PKIXCertPathBuilderResult.

    Methods declared in class PKIXCertPathValidatorResult

    clone, getPolicyTree, getPublicKey, getTrustAnchor
    Modifier and Type
    Method
    Description
    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 the TrustAnchor describing 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, wait
    Modifier and Type
    Method
    Description
    boolean
    Indicates whether some other object is "equal to" this one.
    protected void
    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<?>
    Returns the runtime class of this Object.
    int
    Returns a hash code value for this object.
    final void
    Wakes up a single thread that is waiting on this object's monitor.
    final void
    Wakes up all threads that are waiting on this object's monitor.
    final void
    Causes the current thread to wait until it is awakened, typically by being notified or interrupted.
    final void
    wait(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 void
    wait(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
    Modifier and Type
    Method
    Description
    Makes a copy of this CertPathBuilderResult.
  • Constructor Details

    • PKIXCertPathBuilderResult

      public PKIXCertPathBuilderResult(CertPath certPath, TrustAnchor trustAnchor, PolicyNode policyTree, PublicKey subjectPublicKey)
      Creates an instance of PKIXCertPathBuilderResult containing the specified parameters.
      Parameters:
      certPath - the validated CertPath
      trustAnchor - a TrustAnchor describing the CA that served as a trust anchor for the certification path
      policyTree - the immutable valid policy tree, or null if there are no valid policies
      subjectPublicKey - the public key of the subject
      Throws:
      NullPointerException - if the certPath, trustAnchor or subjectPublicKey parameters are null
  • Method Details

    • getCertPath

      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.
      Specified by:
      getCertPath in interface CertPathBuilderResult
      Returns:
      the built and validated CertPath (never null)
    • toString

      public String toString()
      Return a printable representation of this PKIXCertPathBuilderResult.
      Overrides:
      toString in class PKIXCertPathValidatorResult
      Returns:
      a String describing the contents of this PKIXCertPathBuilderResult