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 TransportationLocalHome extends EJBLocalHome { 49 50 public TransportationLocal create(Transportation transportation) throws 51 CreateException; 52 53 public TransportationLocal findByPrimaryKey(Object key) throws 54 FinderException; 55 } 56 | Popular Tags |