1 25 26 package org.objectweb.jonas.jtests.beans.relation.oou; 27 28 import java.rmi.RemoteException ; 29 30 import javax.ejb.EJBObject ; 31 import javax.ejb.FinderException ; 32 33 36 public interface ARemote extends EJBObject { 37 38 String getId() throws RemoteException ; 39 48 void assignB(String c) throws FinderException , RemoteException ; 49 50 59 void assignBInNewTx(String c) throws FinderException , RemoteException ; 60 61 67 String retrieveB() throws RemoteException ; 68 69 75 String retrieveBInNewTx() throws RemoteException ; 76 } 77 | Popular Tags |