Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
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 (322)
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/CertPathChecker.java
/* * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package java.security.cert; /** * <p>Performs one or more checks on each {@code Certificate} of a * {@code CertPath}. * * <p>A {@code CertPathChecker} implementation is typically created to extend * a certification path validation algorithm. For example, an implementation * may check for and process a critical private extension of each certificate * in a certification path. * * @since 1.8 */ public interface CertPathChecker { /** * Initializes the internal state of this {@code CertPathChecker}. * * <p>The {@code forward} flag specifies the order that certificates will * be passed to the {@link #check check} method (forward or reverse). * * @param forward the order that certificates are presented to the * {@code check} method. If {@code true}, certificates are * presented from target to trust anchor (forward); if * {@code false}, from trust anchor to target (reverse). * @throws CertPathValidatorException if this {@code CertPathChecker} is * unable to check certificates in the specified order */ void init(boolean forward) throws CertPathValidatorException; /** * Indicates if forward checking is supported. Forward checking refers * to the ability of the {@code CertPathChecker} to perform its checks * when certificates are presented to the {@code check} method in the * forward direction (from target to trust anchor). * * @return {@code true} if forward checking is supported, {@code false} * otherwise */ boolean isForwardCheckingSupported(); /** * Performs the check(s) on the specified certificate using its internal * state. The certificates are presented in the order specified by the * {@code init} method. * * @param cert the {@code Certificate} to be checked * @throws CertPathValidatorException if the specified certificate does * not pass the check */ void check(Certificate cert) throws CertPathValidatorException; }
⏎ java/security/cert/CertPathChecker.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, 310058👍, 0💬
Popular Posts:
Apache Ant Source Code Files are inside the Apache Ant source package file like apache-ant-1.10.10-s...
JDK 17 java.management.jmod is the JMOD file for JDK 17 Management module. JDK 17 Management module ...
What is ojdbc.jar - JDBC Driver for Oracle? ojdbc.jar is a JDBC driver from Oracle that provides dat...
Apache Ant is a Java-based build tool. In theory, it is kind of like make, without make's wrinkles. ...
What Is jtds-1.2.2.jar? jtds-1.2.2.jar is the JAR files of jTDS Java library 1.2.2, which is a JDBC ...