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 48 public interface CreditCardLocalHome extends EJBLocalHome { 49 50 public CreditCardLocal create(CreditCard card) throws CreateException; 51 public CreditCardLocal findByPrimaryKey(Object key) throws FinderException; 52 53 54 } 55 | Popular Tags |