1 25 26 package org.objectweb.jonas.jtests.beans.relation.oob; 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 40 49 void assignB(String c) throws FinderException , RemoteException ; 50 51 60 void assignBInNewTx(String c) throws FinderException , RemoteException ; 61 62 68 String retrieveB() throws RemoteException ; 69 70 76 String retrieveBInNewTx() throws RemoteException ; 77 78 } 79 | Popular Tags |