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