Serializable
, Remote
RMIConnectionImpl_Stub
, RMIServerImpl_Stub
@Deprecated public abstract class RemoteStub extends RemoteObject
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.ref
Modifier | Constructor | Description |
---|---|---|
protected |
Deprecated. Constructs a RemoteStub . |
|
protected |
Deprecated. Constructs a RemoteStub with the specified remote reference. |
Modifier and Type | Method | Description |
---|---|---|
protected static void |
setRef |
Deprecated. No replacement. |
protected RemoteStub()
RemoteStub
.protected RemoteStub(RemoteRef ref)
RemoteStub
with the specified remote reference.ref
- the remote reference@Deprecated protected static void setRef(RemoteStub stub, RemoteRef ref)
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.UnsupportedOperationException
.stub
- the remote stubref
- the remote referenceUnsupportedOperationException
- always
© 1993, 2023, 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/en/java/javase/21/docs/api/java.rmi/java/rmi/server/RemoteStub.html
UnicastRemoteObject
for information about dynamic stub generation.