1 2 package org.objectweb.rentacar.services.client; 3 4 import javax.xml.bind.annotation.AccessType; 5 import javax.xml.bind.annotation.XmlAccessorType; 6 import javax.xml.bind.annotation.XmlType; 7 import javax.xml.datatype.XMLGregorianCalendar ; 8 import org.objectweb.rentacar.services.client.AddReservationInCentralDB; 9 10 11 35 @XmlAccessorType(AccessType.FIELD) 36 @XmlType(name = "addReservationInCentralDB", propOrder = { 37 "customerId", 38 "carId", 39 "startingDate", 40 "endingDate", 41 "startingAgencyId", 42 "endingAgencyId" 43 }) 44 public class AddReservationInCentralDB { 45 46 protected String customerId; 47 protected String carId; 48 protected XMLGregorianCalendar startingDate; 49 protected XMLGregorianCalendar endingDate; 50 protected String startingAgencyId; 51 protected String endingAgencyId; 52 53 61 public String getCustomerId() { 62 return customerId; 63 } 64 65 73 public void setCustomerId(String value) { 74 this.customerId = value; 75 } 76 77 85 public String getCarId() { 86 return carId; 87 } 88 89 97 public void setCarId(String value) { 98 this.carId = value; 99 } 100 101 109 public XMLGregorianCalendar getStartingDate() { 110 return startingDate; 111 } 112 113 121 public void setStartingDate(XMLGregorianCalendar value) { 122 this.startingDate = value; 123 } 124 125 133 public XMLGregorianCalendar getEndingDate() { 134 return endingDate; 135 } 136 137 145 public void setEndingDate(XMLGregorianCalendar value) { 146 this.endingDate = value; 147 } 148 149 157 public String getStartingAgencyId() { 158 return startingAgencyId; 159 } 160 161 169 public void setStartingAgencyId(String value) { 170 this.startingAgencyId = value; 171 } 172 173 181 public String getEndingAgencyId() { 182 return endingAgencyId; 183 } 184 185 193 public void setEndingAgencyId(String value) { 194 this.endingAgencyId = value; 195 } 196 197 } 198 | Popular Tags |