Categories:
Audio (13)
Biotech (29)
Bytecode (22)
Database (79)
Framework (7)
Game (7)
General (497)
Graphics (53)
I/O (32)
IDE (2)
JAR Tools (70)
JavaBeans (16)
JDBC (86)
JDK (338)
JSP (20)
Logging (90)
Mail (54)
Messaging (8)
Network (106)
PDF (82)
Report (7)
Scripting (75)
Security (67)
Server (112)
Servlet (17)
SOAP (24)
Testing (55)
Web (24)
XML (287)
Other Resources:
JDK 1.1 Source Code Directory
JDK 1.1 source code directory contains Java source code for JDK 1.1 core classes:
"C:\fyicenter\jdk-1.1.8\src".
Here is the list of Java classes of the JDK 1.1 source code:
✍: FYIcenter
⏎ java/rmi/registry/Registry.java
/* * @(#)Registry.java 1.7 01/12/10 * * Copyright 2002 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package java.rmi.registry; import java.rmi.*; /** * A "registry" exists on every node that allows RMI connections to * servers on that node. The registry on a particular node contains a * transient database that maps names to remote objects. When the * node boots, the registry database is empty. The names stored in the * registry are pure and are not parsed. A service storing itself in * the registry may want to prefix its name of the service by a package * name (although not required), to reduce name collisions in the * registry. * * The LocateRegistry class is used to obtain the registry for different hosts. * * @see LocateRegistry */ public interface Registry extends Remote { /** Well known port for registry */ public static final int REGISTRY_PORT = 1099; /** * Returns the remote object associated with the specified name in the * registry. * * @exception RemoteException If remote operation failed. * @exception NotBoundException if there is no object with this name in the * registry. * @exception AccessException If this operation is not permitted. */ public Remote lookup(String name) throws RemoteException, NotBoundException, AccessException; /** * Binds the name to the specified remote object. * @exception RemoteException If remote operation failed. * @exception AlreadyBoundException If name is already bound. * @exception AccessException If this operation is not permitted. */ public void bind(String name, Remote obj) throws RemoteException, AlreadyBoundException, AccessException; /** * Unbind the name. * @exception RemoteException If remote operation failed. * @exception NotBoundException if there is no object with this name in the * registry. * @exception AccessException If this operation is not permitted. */ public void unbind(String name) throws RemoteException, NotBoundException, AccessException; /** * Rebind the name to a new object, replacing any existing binding. * @exception RemoteException If remote operation failed. * @exception AccessException If this operation is not permitted. */ public void rebind(String name, Remote obj) throws RemoteException, AccessException; /** * Returns an array of the names in the registry. * @exception RemoteException If remote operation failed. * @exception AccessException If this operation is not permitted. */ public String[] list() throws RemoteException, AccessException; }
⏎ java/rmi/registry/Registry.java
⇒ Backup JDK 1.1 Installation Directory
2018-11-17, 39547👍, 0💬
Popular Posts:
Commons Pool provides an Object-pooling API, with three major aspects: 1. A generic object pool inte...
Commons DBCP provides Database Connection Pooling. JAR File Size and Download Location: File name: c...
What Is commons-fileupload-1.3.3 .jar?commons-fileupload-1.3.3 .jaris the JAR file for Apache Common...
JDK 11 java.compiler.jmod is the JMOD file for JDK 11 Compiler module. JDK 11 Compiler module compil...
JDK 11 jdk.charsets.jmod is the JMOD file for JDK 11 Charsets module. JDK 11 Charsets module compile...