1 37 38 package com.sun.j2ee.blueprints.opc.purchaseorder.ejb; 39 40 import javax.ejb.*; 41 42 import com.sun.j2ee.blueprints.opc.purchaseorder.*; 43 44 47 48 public interface AddressLocalHome extends EJBLocalHome { 49 50 public AddressLocal create(Address address) throws CreateException; 51 52 public AddressLocal findByPrimaryKey(Object key) throws FinderException; 53 54 } 55 | Popular Tags |