1 25 26 package org.objectweb.jonas.jtests.beans.relation.cascade; 27 28 import javax.ejb.CreateException ; 29 import javax.ejb.EJBLocalObject ; 30 import javax.naming.NamingException ; 31 32 public interface CarL extends EJBLocalObject { 33 String getNumber(); 34 void setNumber(String number); 35 byte getType(); 36 void setType(byte type); 37 CustomerL getCustomer(); 38 void addInvoice(String number) throws NamingException , CreateException ; 39 } 40 | Popular Tags |