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

com.cleeng.api.domain.BasicResponse Maven / Gradle / Ivy

package com.cleeng.api.domain;

import org.jsonrpc.JSONRPCMessage;

public class BasicResponse extends JSONRPCMessage {

    public Object result;

    public BasicResponse() {

    }

    public BasicResponse(Object result) {

        this.result = result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy