package test;
/**
 * Remote interface for Enterprise Bean: MyBean
 */
public interface MyBean extends javax.ejb.EJBObject {
	public String echo(String s) throws java.rmi.RemoteException;
}