package ejb.demo4; /** * Demo -- this is the "remote" interface of * our enterprise JavaBean*/ import javax.ejb.*; import java.rmi.*; public interface Demo4 extends javax.ejb.EJBObject { // Add any additional remote method interfaces public String demoSelect() throws RemoteException; }