1 37 38 package com.sun.j2ee.blueprints.lodgingsupplier.purchaseorder.ejb; 39 40 import javax.ejb.*; 41 import com.sun.j2ee.blueprints.lodgingsupplier.powebservice.*; 42 43 46 public interface LodgingOrderLocalHome extends EJBLocalHome { 47 48 public LodgingOrderLocal create(LodgingOrder lodge) throws CreateException; 49 public LodgingOrderLocal findByPrimaryKey(String lodgeOrderId) 50 throws FinderException; 51 } 52 | Popular Tags |