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 44 47 48 public interface LodgingLocalHome extends EJBLocalHome { 49 50 public LodgingLocal create(Lodging lodging) throws CreateException; 51 52 public LodgingLocal findByPrimaryKey(Object key) throws FinderException; 53 } 54 | Popular Tags |