1 25 26 package org.objectweb.jonas.jtests.beans.relation.cascade; 27 28 import java.rmi.RemoteException ; 29 import javax.ejb.EJBObject ; 30 31 public interface CarR extends EJBObject { 32 String getNumber() throws RemoteException ; 33 void setNumber(String number) throws RemoteException ; 34 byte getType() throws RemoteException ; 35 void setType(byte type) throws RemoteException ; 36 } 37 | Popular Tags |