01: package org.objectweb.jonas.jtests.beans.ejbql;
02:
03: import java.util.Collection;
04:
05: import javax.ejb.FinderException;
06:
07: // Reservation EJB's local home interface
08: public interface ReservationHomeLocal extends javax.ejb.EJBLocalHome {
09:
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: }
|