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

com.gomcarter.frameworks.dubbo.demo.DemoApiImpl Maven / Gradle / Ivy

There is a newer version: 2.0.10
Show newest version
package com.gomcarter.frameworks.dubbo.demo;

/**
 * @author gomcarter
 */
public class DemoApiImpl implements DemoApi {

    /**
     * @param id id
     * @return DemoDto
     */
    @Override
    public DemoDto getById(Integer id) {
        return new DemoDto()
                .setId(id)
                .setName("name" + id);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy