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 17 java.rmi.jmod - RMI Module
JDK 17 java.rmi.jmod is the JMOD file for JDK 17 RMI (Remote Method Invocation) module.
JDK 17 RMI module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\java.rmi.jmod.
JDK 17 RMI module compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 RMI module source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\java.rmi.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ java/rmi/server/RMIClassLoaderSpi.java
/* * Copyright (c) 2000, 2020, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package java.rmi.server; import java.net.MalformedURLException; import java.net.URL; /** * <code>RMIClassLoaderSpi</code> is the service provider interface for * <code>RMIClassLoader</code>. * * In particular, an <code>RMIClassLoaderSpi</code> instance provides an * implementation of the following static methods of * <code>RMIClassLoader</code>: * * <ul> * * <li>{@link RMIClassLoader#loadClass(URL,String)} * <li>{@link RMIClassLoader#loadClass(String,String)} * <li>{@link RMIClassLoader#loadClass(String,String,ClassLoader)} * <li>{@link RMIClassLoader#loadProxyClass(String,String[],ClassLoader)} * <li>{@link RMIClassLoader#getClassLoader(String)} * <li>{@link RMIClassLoader#getClassAnnotation(Class)} * * </ul> * * When one of those methods is invoked, its behavior is to delegate * to a corresponding method on an instance of this class. * The details of how each method delegates to the provider instance is * described in the documentation for each particular method. * See the documentation for {@link RMIClassLoader} for a description * of how a provider instance is chosen. * * @author Peter Jones * @author Laird Dornin * @see RMIClassLoader * @since 1.4 */ public abstract class RMIClassLoaderSpi { /** * Constructor for subclasses to call. */ public RMIClassLoaderSpi() {} /** * Provides the implementation for * {@link RMIClassLoader#loadClass(URL,String)}, * {@link RMIClassLoader#loadClass(String,String)}, and * {@link RMIClassLoader#loadClass(String,String,ClassLoader)}. * * Loads a class from a codebase URL path, optionally using the * supplied loader. * * Typically, a provider implementation will attempt to * resolve the named class using the given <code>defaultLoader</code>, * if specified, before attempting to resolve the class from the * codebase URL path. * * <p>An implementation of this method must either return a class * with the given name or throw an exception. * * @param codebase the list of URLs (separated by spaces) to load * the class from, or <code>null</code> * * @param name the name of the class to load * * @param defaultLoader additional contextual class loader * to use, or <code>null</code> * * @return the <code>Class</code> object representing the loaded class * * @throws MalformedURLException if <code>codebase</code> is * non-<code>null</code> and contains an invalid URL, or * if <code>codebase</code> is <code>null</code> and a provider-specific * URL used to load classes is invalid * * @throws ClassNotFoundException if a definition for the class * could not be found at the specified location */ public abstract Class<?> loadClass(String codebase, String name, ClassLoader defaultLoader) throws MalformedURLException, ClassNotFoundException; /** * Provides the implementation for * {@link RMIClassLoader#loadProxyClass(String,String[],ClassLoader)}. * * Loads a dynamic proxy class (see {@link java.lang.reflect.Proxy} * that implements a set of interfaces with the given names * from a codebase URL path, optionally using the supplied loader. * * <p>An implementation of this method must either return a proxy * class that implements the named interfaces or throw an exception. * * @param codebase the list of URLs (space-separated) to load * classes from, or <code>null</code> * * @param interfaces the names of the interfaces for the proxy class * to implement * * @return a dynamic proxy class that implements the named interfaces * * @param defaultLoader additional contextual class loader * to use, or <code>null</code> * * @throws MalformedURLException if <code>codebase</code> is * non-<code>null</code> and contains an invalid URL, or * if <code>codebase</code> is <code>null</code> and a provider-specific * URL used to load classes is invalid * * @throws ClassNotFoundException if a definition for one of * the named interfaces could not be found at the specified location, * or if creation of the dynamic proxy class failed (such as if * {@link java.lang.reflect.Proxy#getProxyClass(ClassLoader,Class[])} * would throw an <code>IllegalArgumentException</code> for the given * interface list) */ public abstract Class<?> loadProxyClass(String codebase, String[] interfaces, ClassLoader defaultLoader) throws MalformedURLException, ClassNotFoundException; /** * Provides the implementation for * {@link RMIClassLoader#getClassLoader(String)}. * * Returns a class loader that loads classes from the given codebase * URL path. * * <p>If there is a security manger, its <code>checkPermission</code> * method will be invoked with a * <code>RuntimePermission("getClassLoader")</code> permission; * this could result in a <code>SecurityException</code>. * The implementation of this method may also perform further security * checks to verify that the calling context has permission to connect * to all of the URLs in the codebase URL path. * * @param codebase the list of URLs (space-separated) from which * the returned class loader will load classes from, or <code>null</code> * * @return a class loader that loads classes from the given codebase URL * path * * @throws MalformedURLException if <code>codebase</code> is * non-<code>null</code> and contains an invalid URL, or * if <code>codebase</code> is <code>null</code> and a provider-specific * URL used to identify the class loader is invalid * * @throws SecurityException if there is a security manager and the * invocation of its <code>checkPermission</code> method fails, or * if the caller does not have permission to connect to all of the * URLs in the codebase URL path */ public abstract ClassLoader getClassLoader(String codebase) throws MalformedURLException; // SecurityException /** * Provides the implementation for * {@link RMIClassLoader#getClassAnnotation(Class)}. * * Returns the annotation string (representing a location for * the class definition) that RMI will use to annotate the class * descriptor when marshalling objects of the given class. * * @param cl the class to obtain the annotation for * * @return a string to be used to annotate the given class when * it gets marshalled, or <code>null</code> * * @throws NullPointerException if <code>cl</code> is <code>null</code> */ public abstract String getClassAnnotation(Class<?> cl); }
⏎ java/rmi/server/RMIClassLoaderSpi.java
Or download all of them as a single archive file:
File name: java.rmi-17.0.5-src.zip File size: 220001 bytes Release date: 2022-09-13 Download
⇒ JDK 17 java.scripting.jmod - Scripting Module
2023-11-06, 9957👍, 0💬
Popular Posts:
JDK 11 jdk.internal.opt.jmod is the JMOD file for JDK 11 Internal Opt module. JDK 11 Internal Opt mo...
What Is HttpComponents httpclient-4.2.2.jar? HttpComponents httpclient-4.2.2.jar is the JAR file for...
Java Architecture for XML Binding (JAXB) is a Java API that allows Java developers to map Java class...
What Is mail.jar of JavaMail 1.4.2? I got the JAR file from javamail-1.4.2.zip. mail.jar in javamail...
iText is an ideal library for developers looking to enhance web- and other applications with dynamic...