blob: 31329b1b574b0c3432b99d7832dc03c275293f06 [file] [log] [blame]
/**
* Project: dubbo-examples
*
* File Created at 2012-2-17
* $Id$
*
* Copyright 1999-2100 Alibaba.com Corporation Limited.
* All rights reserved.
*
* This software is the confidential and proprietary information of
* Alibaba Company. ("Confidential Information"). You shall not
* disclose such Confidential Information and shall use it only in
* accordance with the terms of the license agreement you entered into
* with Alibaba.com.
*/
package com.alibaba.dubbo.examples.generic.impl;
import com.alibaba.dubbo.examples.generic.api.IUserService;
/**
* @author chao.liuc
*
*/
public class UserServiceImpl implements IUserService {
public User get(Params params) {
return new User(1, "charles");
}
}