1 package org.objectweb.jonas.jtests.beans.ejbql; 2 3 import java.util.Collection ; 4 5 import javax.ejb.FinderException ; 6 7 public interface ReservationHomeLocal extends javax.ejb.EJBLocalHome { 9 10 public ReservationLocal create(Integer cruise, Collection customers) 11 throws javax.ejb.CreateException ; 12 13 public ReservationLocal findByPrimaryKey(Object primaryKey) 14 throws javax.ejb.FinderException ; 15 16 public Collection findAllReservations() throws FinderException ; 17 18 public Collection findOrderedRsrv() throws FinderException ; 19 20 } 21 | Popular Tags |