-
public interface PolicyNode
An immutable valid policy tree node as defined by the PKIX certification path validation algorithm.One of the outputs of the PKIX certification path validation algorithm is a valid policy tree, which includes the policies that were determined to be valid, how this determination was reached, and any policy qualifiers encountered. This tree is of depth n, where n is the length of the certification path that has been validated.
Most applications will not need to examine the valid policy tree. They can achieve their policy processing goals by setting the policy-related parameters in
PKIXParameters
. However, the valid policy tree is available for more sophisticated applications, especially those that process policy qualifiers.PKIXCertPathValidatorResult.getPolicyTree
returns the root node of the valid policy tree. The tree can be traversed using thegetChildren
andgetParent
methods. Data about a particular node can be retrieved using other methods ofPolicyNode
.Concurrent Access
All
PolicyNode
objects must be immutable and thread-safe. Multiple threads may concurrently invoke the methods defined in this class on a singlePolicyNode
object (or more than one) with no ill effects. This stipulation applies to all public fields and methods of this class and any added or overridden by subclasses.- Since:
- 1.4
-
-
Method Summary
Methods Modifier and Type Method and Description Iterator<? extends PolicyNode>
getChildren()
Returns an iterator over the children of this node.int
getDepth()
Returns the depth of this node in the valid policy tree.Set<String>
getExpectedPolicies()
Returns the set of expected policies that would satisfy this node's valid policy in the next certificate to be processed.PolicyNode
getParent()
Returns the parent of this node, ornull
if this is the root node.Set<? extends PolicyQualifierInfo>
getPolicyQualifiers()
Returns the set of policy qualifiers associated with the valid policy represented by this node.String
getValidPolicy()
Returns the valid policy represented by this node.boolean
isCritical()
Returns the criticality indicator of the certificate policy extension in the most recently processed certificate.
-
-
-
Method Detail
-
getParent
PolicyNode getParent()
Returns the parent of this node, ornull
if this is the root node.- Returns:
- the parent of this node, or
null
if this is the root node
-
getChildren
Iterator<? extends PolicyNode> getChildren()
Returns an iterator over the children of this node. Any attempts to modify the children of this node through theIterator
's remove method must throw anUnsupportedOperationException
.- Returns:
- an iterator over the children of this node
-
getDepth
int getDepth()
Returns the depth of this node in the valid policy tree.- Returns:
- the depth of this node (0 for the root node, 1 for its children, and so on)
-
getValidPolicy
String getValidPolicy()
Returns the valid policy represented by this node.- Returns:
- the
String
OID of the valid policy represented by this node. For the root node, this method always returns the special anyPolicy OID: "2.5.29.32.0".
-
getPolicyQualifiers
Set<? extends PolicyQualifierInfo> getPolicyQualifiers()
Returns the set of policy qualifiers associated with the valid policy represented by this node.- Returns:
- an immutable
Set
ofPolicyQualifierInfo
s. For the root node, this is always an emptySet
.
-
getExpectedPolicies
Set<String> getExpectedPolicies()
Returns the set of expected policies that would satisfy this node's valid policy in the next certificate to be processed.- Returns:
- an immutable
Set
of expected policyString
OIDs. For the root node, this method always returns aSet
with one element, the special anyPolicy OID: "2.5.29.32.0".
-
isCritical
boolean isCritical()
Returns the criticality indicator of the certificate policy extension in the most recently processed certificate.- Returns:
true
if extension marked critical,false
otherwise. For the root node,false
is always returned.
-
-
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-java/security/cert/PolicyNode.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.