public abstract class MethodHandler
extends java.lang.Object
Handler interface for OData actions and functions.
| Constructor and Description |
|---|
MethodHandler() |
| Modifier and Type | Method and Description |
|---|---|
void |
allowUnused(java.lang.Object value)
Helper function so generated subclasses can explicitly ignore a value.
|
abstract DataValue |
executeMethod(DataMethod method,
ParameterList parameters)
Handles the invocation of an action or function.
|
public void allowUnused(java.lang.Object value)
Helper function so generated subclasses can explicitly ignore a value.
value - Value to be ignored.public abstract DataValue executeMethod(DataMethod method, ParameterList parameters)
Handles the invocation of an action or function.
method - Data method.parameters - Method parameters.