Class RemoteStub
- java.lang.Object
-
- java.rmi.server.RemoteObject
-
- java.rmi.server.RemoteStub
- All Implemented Interfaces:
- Serializable, Remote
- Direct Known Subclasses:
- ActivationGroup_Stub, RMIConnectionImpl_Stub, RMIServerImpl_Stub
Deprecated.
Statically generated stubs are deprecated, since stubs are generated dynamically. See UnicastRemoteObject
for information about dynamic stub generation.
@Deprecated public abstract class RemoteStub extends RemoteObject
The RemoteStub
class is the common superclass of statically generated client stubs and provides the framework to support a wide range of remote reference semantics. Stub objects are surrogates that support exactly the same set of remote interfaces defined by the actual implementation of the remote object.
- Since:
- JDK1.1
- See Also:
- Serialized Form
Fields
Fields inherited from class java.rmi.server.RemoteObject
ref
Constructors
Modifier | Constructor and Description |
---|---|
protected |
RemoteStub() Deprecated. Constructs a |
protected |
RemoteStub(RemoteRef ref) Deprecated. Constructs a |
Methods
Modifier and Type | Method and Description |
---|---|
protected static void |
setRef(RemoteStub stub,
RemoteRef ref) Deprecated. No replacement. The |
Methods inherited from class java.rmi.server.RemoteObject
equals, getRef, hashCode, toString, toStub
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Constructors
RemoteStub
protected RemoteStub()
Deprecated.
Constructs a RemoteStub
.
RemoteStub
protected RemoteStub(RemoteRef ref)
Deprecated.
Constructs a RemoteStub
with the specified remote reference.
- Parameters:
-
ref
- the remote reference - Since:
- JDK1.1
Methods
setRef
@Deprecated protected static void setRef(RemoteStub stub, RemoteRef ref)
Deprecated. No replacement. The setRef
method was intended for setting the remote reference of a remote stub. This is unnecessary, since RemoteStub
s can be created and initialized with a remote reference through use of the RemoteStub(RemoteRef)
constructor.
Throws UnsupportedOperationException
.
- Parameters:
-
stub
- the remote stub -
ref
- the remote reference - Throws:
-
UnsupportedOperationException
- always - Since:
- JDK1.1
© 1993, 2020, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/javase/8/docs/api/java/rmi/server/RemoteStub.html