import wt.method.RemoteAccess;
import wt.util.WTException;

public class RmiTarget implements RemoteAccess {

	public static String sayHelloTo (String name) throws WTException {
		String message = "Windchill says hello, "+name;

		System.out.println("RmiTarget >> "+message);
		return message;
	}
}
