CONTENTS | PREV | NEXT | Java Remote Method Invocation |
Operation
Class
The classOperation
holds a description of a method in the Java programming language for a remote object.
Note - TheOperation
interface is deprecated as of the Java 2 SDK, Standard Edition, v1.2. The 1.2 stub protocol no longer uses the oldRemoteRef.invoke
method which takes anOperation
as one of its arguments. As of the Java 2 SDK, Standard Edition, v1.2, stubs now use the newinvoke
method which does not requireOperation
as a parameter.
package java.rmi.server; public class Operation { public Operation(String op) {...} public String getOperation() {...} public String toString() {...} }
AnOperation
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).