All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jsonrpc.JSONRPCRequest Maven / Gradle / Ivy

package org.jsonrpc;

import java.io.Serializable;

public class JSONRPCRequest extends JSONRPCMessage {

    public String method;
    public Serializable params;

    public JSONRPCRequest() {

    }

    public JSONRPCRequest(String method, Serializable params) {
        super("1", "2.0");
        this.method = method;
        this.params = params;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy