1 3 package org.objectweb.jonas.stests.appli; 4 5 import java.rmi.RemoteException ; 6 import java.util.Vector ; 7 8 import javax.ejb.CreateException ; 9 import javax.ejb.EJBHome ; 10 import javax.ejb.FinderException ; 11 12 15 public interface OrderHome extends EJBHome { 16 17 28 29 public Order create(String warehouseId, 30 int districtId, 31 Integer customerId, 32 float orderId, Vector orderDetails) 33 throws CreateException , RemoteException ; 34 35 36 44 45 public Order findByPrimaryKey(OrderID primaryKey) 46 throws FinderException , RemoteException ; 47 48 49 60 61 public Order findByID(String wID, String dID, String oID) 62 throws FinderException , RemoteException ; 63 64 } 65 | Popular Tags |