import java.rmi.RemoteException;

/**
 * 
 */

/**
 * @author bon
 *
 */
public interface RMI_first_demo_Interface extends java.rmi.Remote {
//	static public final String SERVICE_NAME = "RMI_first_demo";

	public void greeting(String message) throws RemoteException;
	
}