Class GetRateHandler
java.lang.Object
net.i2p.i2pcontrol.servlets.jsonrpc2handlers.GetRateHandler
- All Implemented Interfaces:
RequestHandler
public class GetRateHandler extends Object implements RequestHandler
-
Constructor Summary
Constructors Constructor Description GetRateHandler(JSONRPC2Helper helper)
-
Method Summary
Modifier and Type Method Description String[]
handledRequests()
Gets the names of the handled JSON-RPC 2.0 request methods.JSONRPC2Response
process(JSONRPC2Request req, MessageContext ctx)
Processes a JSON-RPC 2.0 request.
-
Constructor Details
-
Method Details
-
handledRequests
Description copied from interface:RequestHandler
Gets the names of the handled JSON-RPC 2.0 request methods.- Specified by:
handledRequests
in interfaceRequestHandler
- Returns:
- The names of the handled JSON-RPC 2.0 request methods.
-
process
Description copied from interface:RequestHandler
Processes a JSON-RPC 2.0 request.- Specified by:
process
in interfaceRequestHandler
- Parameters:
req
- A valid JSON-RPC 2.0 request instance. Must not benull
.ctx
- Context information about the request message, may benull
if undefined.- Returns:
- The resulting JSON-RPC 2.0 response. It indicates success or an error, such as METHOD_NOT_FOUND.
-