01: package org.objectweb.jonas.jtests.beans.ejbql;
02:
03: import java.util.Date;
04: import java.util.Set;
05:
06: // Reservation EJB's local interface
07: public interface ReservationLocal extends javax.ejb.EJBLocalObject {
08:
09: public Date getDate();
10:
11: public void setDate(Date date);
12:
13: public double getAmountPaid();
14:
15: public void setAmountPaid(double amount);
16:
17: public CruiseLocal getCruise();
18:
19: public void setCruise(CruiseLocal cruise);
20:
21: public Set getCabins();
22:
23: public void setCabins(Set customers);
24:
25: public Set getCustomers();
26:
27: public void setCustomers(Set customers);
28:
29: public Integer getId();
30:
31: }
|