forked from I2P_Developers/i2p.i2p
Includes mods to use org.json.simple package. See licenses/LICENSE-Apache2.0.txt Includes jBCrypt: Copyright (c) 2006 Damien Miller <djm@mindrot.org> See licenses/LICENSE-jBCrypt.txt Includes jsonrpc2 libs: See licenses/LICENSE-Apache2.0.txt http://software.dzhuvinov.com/json-rpc-2.0-server.html Jars from maven central: jsonrpc2-base-1.38.1-sources.jar 22-Oct-2017 jsonrpc2-server-1.11-sources.jar 16-Mar-2015
35 lines
1.4 KiB
Java
35 lines
1.4 KiB
Java
/**
|
|
* Simple server framework for processing JSON-RPC 2.0 requests and
|
|
* notifications.
|
|
*
|
|
* <p>Usage:
|
|
*
|
|
* <ol>
|
|
* <li>Implement {@link com.thetransactioncompany.jsonrpc2.server.RequestHandler request}
|
|
* and / or {@link com.thetransactioncompany.jsonrpc2.server.NotificationHandler notification}
|
|
* handlers for the various expected JSON-RPC 2.0 messages. A handler
|
|
* may process one or more request/notification methods (identified by
|
|
* method name).
|
|
* <li>Create a new {@link com.thetransactioncompany.jsonrpc2.server.Dispatcher}
|
|
* and register the handlers with it.
|
|
* <li>Pass the received JSON-RPC 2.0 requests and notifications to the
|
|
* appropriate {@code Dispatcher.dispatch(...)} method, then, if the
|
|
* message is a request, pass the resulting JSON-RPC 2.0 response back
|
|
* to the client.
|
|
* </ol>
|
|
*
|
|
* <p>Direct package dependencies:
|
|
*
|
|
* <ul>
|
|
* <li><b><a href="http://software.dzhuvinov.com/json-rpc-2.0-base.html">JSON-RPC 2.0 Base</a></b>
|
|
* [<i>com.thetransactioncompany.jsonrpc2</i>] to construct and represent
|
|
* JSON-RPC 2.0 messages.
|
|
* <li><b>Java Servlet API</b> [<i>javax.servlet.http</i>] for constructing
|
|
* {@link com.thetransactioncompany.jsonrpc2.server.MessageContext}
|
|
* objects from HTTP servlet requests.
|
|
* </ul>
|
|
*
|
|
* @author Vladimir Dzhuvinov
|
|
*/
|
|
package com.thetransactioncompany.jsonrpc2.server;
|