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

cloud.tianai.rpc.demo.api.DemoServiceImpl Maven / Gradle / Ivy

There is a newer version: 1.6.0
Show newest version
package cloud.tianai.rpc.demo.api;

public class DemoServiceImpl implements DemoService {
    @Override
    public DemoResult req(String str, Integer id, DemoRequest request) {
        DemoResult result = new DemoResult();
        result.setStr(str);
        result.setId(id);
        result.setRequest(request);
        return result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy