- 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 thebuild
method ofCertPathBuilder
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 aTrustAnchor
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:
CertPathBuilderResult
-
-
Constructor Summary
Constructors Constructor and Description PKIXCertPathBuilderResult(CertPath certPath, TrustAnchor trustAnchor, PolicyNode policyTree, PublicKey subjectPublicKey)
Creates an instance ofPKIXCertPathBuilderResult
containing the specified parameters.
-
Method Summary
Methods Modifier and Type Method and Description CertPath
getCertPath()
Returns the built and validated certification path.String
toString()
Return a printable representation of thisPKIXCertPathBuilderResult
.-
Methods inherited from class java.security.cert.PKIXCertPathValidatorResult
clone, getPolicyTree, getPublicKey, getTrustAnchor
-
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.security.cert.CertPathBuilderResult
clone
-
-
-
-
Constructor Detail
-
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 Detail
-
getCertPath
public CertPath 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
public String toString()
Return a printable representation of thisPKIXCertPathBuilderResult
.- Overrides:
toString
in classPKIXCertPathValidatorResult
- Returns:
- a
String
describing the contents of thisPKIXCertPathBuilderResult
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
05/11/2024 14:43:32 Cette version de la page est en cache (à la date du 05/11/2024 14:43:32) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 07/12/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-java/security/cert/PKIXCertPathBuilderResult.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.