Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 11 java.base.jmod - Base Module
JDK 11 java.base.jmod is the JMOD file for JDK 11 Base module.
JDK 11 Base module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\java.base.jmod.
JDK 11 Base module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Base module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\java.base.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ java/security/cert/PolicyNode.java
/* * Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package java.security.cert; import java.util.Iterator; import java.util.Set; /** * An immutable valid policy tree node as defined by the PKIX certification * path validation algorithm. * * <p>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 * <i>n</i>, where <i>n</i> is the length of the certification * path that has been validated. * * <p>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 {@code PKIXParameters}. However, * the valid policy tree is available for more sophisticated applications, * especially those that process policy qualifiers. * * <p>{@link PKIXCertPathValidatorResult#getPolicyTree() * PKIXCertPathValidatorResult.getPolicyTree} returns the root node of the * valid policy tree. The tree can be traversed using the * {@link #getChildren getChildren} and {@link #getParent getParent} methods. * Data about a particular node can be retrieved using other methods of * {@code PolicyNode}. * * <p><b>Concurrent Access</b> * <p>All {@code PolicyNode} objects must be immutable and * thread-safe. Multiple threads may concurrently invoke the methods defined * in this class on a single {@code PolicyNode} 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 * @author Sean Mullan */ public interface PolicyNode { /** * Returns the parent of this node, or {@code null} if this is the * root node. * * @return the parent of this node, or {@code null} if this is the * root node */ PolicyNode getParent(); /** * Returns an iterator over the children of this node. Any attempts to * modify the children of this node through the * {@code Iterator}'s remove method must throw an * {@code UnsupportedOperationException}. * * @return an iterator over the children of this node */ Iterator<? extends PolicyNode> getChildren(); /** * Returns the depth of this node in the valid policy tree. * * @return the depth of this node (0 for the root node, 1 for its * children, and so on) */ int getDepth(); /** * Returns the valid policy represented by this node. * * @return the {@code 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". */ String getValidPolicy(); /** * Returns the set of policy qualifiers associated with the * valid policy represented by this node. * * @return an immutable {@code Set} of * {@code PolicyQualifierInfo}s. For the root node, this * is always an empty {@code Set}. */ Set<? extends PolicyQualifierInfo> getPolicyQualifiers(); /** * Returns the set of expected policies that would satisfy this * node's valid policy in the next certificate to be processed. * * @return an immutable {@code Set} of expected policy * {@code String} OIDs. For the root node, this method * always returns a {@code Set} with one element, the * special anyPolicy OID: "2.5.29.32.0". */ Set<String> getExpectedPolicies(); /** * Returns the criticality indicator of the certificate policy extension * in the most recently processed certificate. * * @return {@code true} if extension marked critical, * {@code false} otherwise. For the root node, {@code false} * is always returned. */ boolean isCritical(); }
⏎ java/security/cert/PolicyNode.java
Or download all of them as a single archive file:
File name: java.base-11.0.1-src.zip File size: 8740354 bytes Release date: 2018-11-04 Download
2020-05-29, 243096👍, 0💬
Popular Posts:
Smack is an Open Source XMPP (Jabber) client library for instant messaging and presence. A pure Java...
The Java Naming and Directory Interface (JNDI) is part of the Java platform, providing applications ...
What Is js.jar in Rhino JavaScript 1.7R5? js.jar in Rhino JavaScript 1.7R5 is the JAR file for Rhino...
What Is log4j-1.2.13.jar? I got the JAR file from logging-log4j-1.2.13.zip .log4j-1.2.13.jar is the ...
What Is poi-ooxml-3.5.jar? poi-ooxml-3.5.jar is one of the JAR files for Apache POI 3.5, which provi...