KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > rentacar > agency > services > reservation > ElementsToReserve


1 package org.objectweb.rentacar.agency.services.reservation;
2
3 import org.objectweb.rentacar.services.client.AgencyReservationServiceImpl;
4
5 public class ElementsToReserve {
6
7     AgencyReservationServiceImpl resaImpl;
8     String JavaDoc carVOId;
9     
10     
11     public ElementsToReserve() {
12         super();
13     }
14
15     public ElementsToReserve(AgencyReservationServiceImpl resaImpl, String JavaDoc carVOId) {
16         super();
17         this.resaImpl = resaImpl;
18         this.carVOId = carVOId;
19     }
20     
21     public String JavaDoc getCarVOId() {
22         return carVOId;
23     }
24     public void setCarVOId(String JavaDoc carVOId) {
25         this.carVOId = carVOId;
26     }
27     public AgencyReservationServiceImpl getResaImpl() {
28         return resaImpl;
29     }
30     public void setResaImpl(AgencyReservationServiceImpl resaImpl) {
31         this.resaImpl = resaImpl;
32     }
33     
34 }
35
Popular Tags