1 22 package org.jboss.test.testbean.interfaces; 23 24 import javax.ejb.EJBObject ; 25 import java.rmi.RemoteException ; 26 27 public interface EntityBMP extends EJBObject { 28 29 public String callBusinessMethodA() throws RemoteException ; 30 31 public String callBusinessMethodB() throws RemoteException ; 32 33 public String callBusinessMethodB(String words) throws RemoteException ; 34 } 35 | Popular Tags |