FileDocCategorySizeDatePackage
RemoteStub.javaAPI DocJava SE 5 API1659Fri Aug 26 14:57:12 BST 2005java.rmi.server

RemoteStub

public abstract class RemoteStub extends RemoteObject
The RemoteStub class is the common superclass to 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.
version
1.21, 05/18/04
author
Ann Wollrath
since
JDK1.1

Fields Summary
private static final long
serialVersionUID
indicate compatibility with JDK 1.1.x version of class
Constructors Summary
protected RemoteStub()
Constructs a RemoteStub.

    
            
      
    	super();
    
protected RemoteStub(RemoteRef ref)
Constructs a RemoteStub, with the specified remote reference.

param
ref the remote reference
since
JDK1.1

	super(ref);
    
Methods Summary
protected static voidsetRef(java.rmi.server.RemoteStub stub, java.rmi.server.RemoteRef ref)
Sets the remote reference inside the remote stub.

param
stub the remote stub
param
ref the remote reference
since
JDK1.1
deprecated
no replacement. The setRef method is not needed since RemoteStubs can be created with the RemoteStub(RemoteRef) constructor.

	throw new UnsupportedOperationException();