1 37 package com.sun.j2ee.blueprints.opc.purchaseorder.ejb; 38 39 import javax.ejb.*; 40 41 import com.sun.j2ee.blueprints.opc.purchaseorder.*; 42 43 46 47 public interface PurchaseOrderLocalHome extends EJBLocalHome { 48 49 public PurchaseOrderLocal create(PurchaseOrder po) throws CreateException; 50 public PurchaseOrderLocal findByPrimaryKey(String poId) throws FinderException; 51 52 53 } 54 | Popular Tags |