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/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, 242820👍, 0💬
Popular Posts:
How to run "jar" command from JDK tools.jar file? "jar" is the JAR (Java Archive) file management co...
XStream is a simple library to serialize objects to XML and back again. JAR File Size and Download L...
How to download and install ojdbc5.jar for Oracle 11g R1? ojdbc5.jar for Oracle 11g R1 is a Java 5 J...
What Is javamail-1_2.zip? javamail-1_2.zip is the binary package of JavaMail API 1.2 in ZIP format. ...
JDK 11 java.xml.crypto.jmod is the JMOD file for JDK 11 XML (eXtensible Markup Language) Crypto modu...