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

Operation

public class Operation extends Object
An Operation contains a description of a Java method. Operation objects were used in JDK1.1 version stubs and skeletons. The Operation class is not needed for 1.2 style stubs (stubs generated with rmic -v1.2); hence, this class is deprecated.
version
1.17, 05/18/04
since
JDK1.1
deprecated
no replacement

Fields Summary
private String
operation
Constructors Summary
public Operation(String op)
Creates a new Operation object.

param
op method name
deprecated
no replacement
since
JDK1.1

	operation = op;
    
Methods Summary
public java.lang.StringgetOperation()
Returns the name of the method.

return
method name
deprecated
no replacement
since
JDK1.1

	return operation;
    
public java.lang.StringtoString()
Returns the string representation of the operation.

deprecated
no replacement
since
JDK1.1

	return operation;