public class Operation
extends java.lang.Object
| Constructor and Description |
|---|
Operation(java.lang.String name,
java.util.List<java.lang.Object> parameters)
Basic constructor to create an instance of Operation object.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getName()
Return the name of the invoking method.
|
java.util.List<java.lang.Object> |
getParameters()
Return the list of parameters to pass to the invoking method.
|
void |
setName(java.lang.String name)
Set the invoking method name.
|
void |
setParameters(java.util.List<java.lang.Object> parameters)
Set the list of parameters to pass to the invoking method.
|
public Operation(java.lang.String name,
java.util.List<java.lang.Object> parameters)
name - the name of the invoking method.parameters - the list of parameters to pass to the invoking method.public java.lang.String getName()
public void setName(java.lang.String name)
name - the method name.public java.util.List<java.lang.Object> getParameters()
public void setParameters(java.util.List<java.lang.Object> parameters)
parameters - the list of parameters to pass to the invoking method.