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/URICertStoreParameters.java
/* * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package java.security.cert; import java.net.URI; /** * Parameters used as input for {@code CertStore} algorithms which use * information contained in a URI to retrieve certificates and CRLs. * <p> * This class is used to provide necessary configuration parameters * through a URI as defined in RFC 5280 to implementations of * {@code CertStore} algorithms. * <p> * <b>Concurrent Access</b> * <p> * 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 9 * @see CertStore * @see java.net.URI */ public final class URICertStoreParameters implements CertStoreParameters { /** * The uri, cannot be null */ private final URI uri; /* * Hash code for this parameters. */ private int myhash = -1; /** * Creates an instance of {@code URICertStoreParameters} with the * specified URI. * * @param uri the URI which contains configuration information. * @throws NullPointerException if {@code uri} is null */ public URICertStoreParameters(URI uri) { if (uri == null) { throw new NullPointerException(); } this.uri = uri; } /** * Returns the URI used to construct this * {@code URICertStoreParameters} object. * * @return the URI. */ public URI getURI() { return uri; } /** * Returns a copy of this object. Changes to the copy will not affect * the original and vice versa. * * @return the copy */ @Override public URICertStoreParameters clone() { try { return new URICertStoreParameters(uri); } catch (NullPointerException e) { /* Cannot happen */ throw new InternalError(e.toString(), e); } } /** * Returns a hash code value for this parameters object. * The hash code is generated using the URI supplied at construction. * * @return a hash code value for this parameters. */ @Override public int hashCode() { if (myhash == -1) { myhash = uri.hashCode()*7; } return myhash; } /** * Compares the specified object with this parameters object for equality. * Two URICertStoreParameters are considered equal if the URIs used * to construct them are equal. * * @param p the object to test for equality with this parameters. * * @return true if the specified object is equal to this parameters object. */ @Override public boolean equals(Object p) { if (p == null || (!(p instanceof URICertStoreParameters))) { return false; } if (p == this) { return true; } URICertStoreParameters other = (URICertStoreParameters)p; return uri.equals(other.getURI()); } /** * Returns a formatted string describing the parameters * including the URI used to construct this object. * * @return a formatted string describing the parameters */ @Override public String toString() { return "URICertStoreParameters: " + uri.toString(); } }
⏎ java/security/cert/URICertStoreParameters.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, 242318👍, 0💬
Popular Posts:
XStream is a simple library to serialize objects to XML and back again. JAR File Size and Download L...
Apache Ant is a Java-based build tool. In theory, it is kind of like make, without make's wrinkles. ...
Provides a simple high-level Http server API, which can be used to build embedded HTTP servers. Both...
JAX-WS is an API for building web services and clients. It is the next generation Web Services API r...
What Is HttpComponents httpclient-4.2.2.jar? HttpComponents httpclient-4.2.2.jar is the JAR file for...