This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


java.security.cert
class PKIXCertPathBuilderResult

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

Most common way to construct:

CertPathBuilder builder = …;
PKIXBuilderParameters params = …;

PKIXCertPathBuilderResult result = (PKIXCertPathBuilderResult)builder.build(params);

Based on 27 examples


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.


Constructor Summary
PKIXCertPathBuilderResult(CertPath certPath, TrustAnchor trustAnchor, PolicyNode policyTree, PublicKey subjectPublicKey)

          Creates an instance of PKIXCertPathBuilderResult containing the specified parameters.
 
Method Summary
 CertPath

          Returns the built and validated certification path.
 String

          Return a printable representation of this PKIXCertPathBuilderResult.
 
Methods inherited from class java.security.cert.PKIXCertPathValidatorResult
clone, getPolicyTree, getPublicKey, getTrustAnchor, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

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
Method Detail

getCertPath

public CertPath getCertPath()
Returns the built and validated certification path. The CertPath object does not include the trust anchor. Instead, use the {@link #getTrustAnchor() getTrustAnchor()} method to obtain the TrustAnchor that served as the trust anchor for the certification path.

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


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention, which is derived from the offical documentation that contains this copyright notice:
Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.
The official Sun™ documentation can be found here at http://java.sun.com/javase/6/docs/api/.