1 2 package test;3 4 import java.rmi.RemoteException ;5 6 7 /**8 * This is the business interface for TestingSession enterprise bean.9 */10 public interface TestingSessionRemoteBusiness {11 String testBusinessMethod1() throws RemoteException ;12 13 String testBusinessMethod2(String a, int b) throws Exception , java.rmi.RemoteException ;14 15 }16