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
33 lines
1.3 KiB
Java
33 lines
1.3 KiB
Java
/**
|
|
* Classes to represent, parse and serialise JSON-RPC 2.0 requests,
|
|
* notifications and responses.
|
|
*
|
|
* <p>JSON-RPC is a protocol for
|
|
* <a href="http://en.wikipedia.org/wiki/Remote_procedure_call">remote
|
|
* procedure calls</a> (RPC) using <a href="http://www.json.org" >JSON</a>
|
|
* - encoded requests and responses. It can be easily relayed over HTTP
|
|
* and is of JavaScript origin, making it ideal for use in dynamic web
|
|
* applications in the spirit of Ajax and Web 2.0.
|
|
*
|
|
* <p>This package implements <b>version 2.0</b> of the protocol, with the
|
|
* exception of <i>batching / multicall</i>. This feature is deliberately left
|
|
* out as it tends to confuse users (judging by posts in the JSON-RPC forum).
|
|
*
|
|
* <p>See the <a href="http://www.jsonrpc.org/specification"></a>JSON-RPC 2.0
|
|
* specification</a> for more information or write to the
|
|
* <a href="https://groups.google.com/forum/#!forum/json-rpc">user group</a> if
|
|
* you have questions.
|
|
*
|
|
* <p><b>Package dependencies:</b> The classes in this package rely on the
|
|
* {@code org.json.simple} and {@code org.json.simple.parser} packages
|
|
* (version 1.1.1 and compabile) for JSON encoding and decoding. You can obtain
|
|
* them from the <a href="http://code.google.com/p/json-smart/">JSON-Smart</a>
|
|
* website.
|
|
*
|
|
* @author Vladimir Dzhuvinov
|
|
*/
|
|
package com.thetransactioncompany.jsonrpc2;
|
|
|
|
|
|
|