1 25 26 package org.objectweb.jonas.jtests.beans.relation.omb; 27 28 import javax.ejb.EJBObject ; 29 import javax.ejb.FinderException ; 30 31 import java.rmi.RemoteException ; 32 33 36 public interface BRemote extends EJBObject { 37 38 String getId() throws RemoteException ; 39 40 46 void assignA(String pkA) throws FinderException , RemoteException ; 47 48 54 void assignAInNewTx(String pkA) throws FinderException , RemoteException ; 55 56 62 String retrieveA() throws RemoteException ; 63 64 70 String retrieveAInNewTx() throws RemoteException ; 71 72 79 boolean equalsRelA(String pka) throws FinderException , RemoteException ; 80 81 void m1() throws RemoteException ; 82 83 } 84 | Popular Tags |