| StringEchoService1.java |
1 /*
2 * @(#) $Id: StringEchoService1.java,v 1.3 2003/09/14 03:20:21 pankaj Exp $
3 *
4 * Copyright (c) 2002-03 by Pankaj Kumar (http://www.pankaj-k.net).
5 * All rights reserved.
6 *
7 * The license governing the use of this file can be found in the
8 * root directory of the containing software.
9 */
10public class StringEchoService1 {
11 public String echo(String arg){
12 return arg;
13 }
14}
15