CONTENTS | PREV | NEXT Java Remote Method Invocation


8.6 The Operation Class

The class Operation holds a description of a Java method for a remote object.


Note - The Operation interface is deprecated in JDK 1.2. The JDK 1.2 stub protocol no longer uses the old RemoteRef.invoke method which takes an Operation as one of its arguments. In JDK 1.2, stubs now use the new invoke method which does not require Operation as a parameter.
package java.rmi.server;

public class Operation {

	public Operation(String op);

	public String getOperation();

	public String toString();
}


An Operation object is typically constructed with the method signature.

The method getOperation returns the contents of the operation descriptor (the value with which it was initialized).

The method toString also returns the string representation of the operation descriptor (typically the method signature).



CONTENTS | PREV | NEXT
Copyright © 1997-1998 Sun Microsystems, Inc. All Rights Reserved.