1 25 26 package org.objectweb.jonas.jtests.beans.relation.dass; 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 String getBcmrvalue() throws RemoteException ; 40 void setBcmrvalue(String id) throws RemoteException ; 41 42 51 void assignB(String c) throws FinderException , RemoteException ; 52 53 59 String retrieveB() throws RemoteException ; 60 61 } 62 | Popular Tags |