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