1 25 26 package org.objectweb.jonas.jtests.beans.relation.mou; 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 63 69 String retrieveB() throws RemoteException ; 70 71 77 String retrieveBInNewTx() throws RemoteException ; 78 79 80 81 } 82 | Popular Tags |