FileDocCategorySizeDatePackage
ProxyRef.javaAPI DocJava SE 5 API1739Fri Aug 26 14:55:00 BST 2005com.sun.jmx.remote.internal

ProxyRef

public class ProxyRef extends Object implements RemoteRef

Fields Summary
protected RemoteRef
ref
Constructors Summary
public ProxyRef(RemoteRef ref)

	this.ref = ref;
    
Methods Summary
public voiddone(java.rmi.server.RemoteCall call)

	ref.done(call);
    
public java.lang.StringgetRefClass(java.io.ObjectOutput out)

	return ref.getRefClass(out);
    
public voidinvoke(java.rmi.server.RemoteCall call)

	ref.invoke(call);
    
public java.lang.Objectinvoke(java.rmi.Remote obj, java.lang.reflect.Method method, java.lang.Object[] params, long opnum)

	return ref.invoke(obj, method, params, opnum);
    
public java.rmi.server.RemoteCallnewCall(java.rmi.server.RemoteObject obj, java.rmi.server.Operation[] op, int opnum, long hash)

	return ref.newCall(obj, op, opnum, hash);
    
public voidreadExternal(java.io.ObjectInput in)

	ref.readExternal(in);
    
public booleanremoteEquals(java.rmi.server.RemoteRef obj)

        return ref.remoteEquals(obj);
    
public intremoteHashCode()

        return ref.remoteHashCode();
    
public java.lang.StringremoteToString()

        return ref.remoteToString();
    
public voidwriteExternal(java.io.ObjectOutput out)

	ref.writeExternal(out);