/** * File Created at 2011-11-23 * $Id$ * * Copyright 2008 Alibaba.com Croporation 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.rpc.protocol.thrift; /** * @author gang.lvg 2011-11-23 14:17 */ public class DemoImpl { public boolean echoBool( boolean arg ) { return arg; } public byte echoByte( byte arg ) { return arg; } public short echoI16( short arg ) { return arg; } public int echoI32( int arg ) { return arg; } public long echoI64( long arg ) { return arg; } public double echoDouble( double arg ) { return arg; } public String echoString( String arg ) { return arg; } }