1 37 38 package com.sun.j2ee.blueprints.processmanager.manager.ejb; 39 40 import javax.ejb.CreateException ; 41 import javax.ejb.FinderException ; 42 43 import java.util.Collection ; 44 45 48 49 public interface ManagerLocalHome extends javax.ejb.EJBLocalHome { 50 51 public ManagerLocal create(String orderId, String status,String actyOrderStatus, 52 String airlineOrderStatus, String lodgOrderStatus, boolean orderError) throws CreateException ; 53 54 public ManagerLocal findByPrimaryKey (String orderId) throws FinderException ; 55 56 public Collection findOrdersByStatus(String status) throws FinderException ; 57 58 } 59 60 | Popular Tags |