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.CreateReservation; 9 10 11 35 @XmlAccessorType(AccessType.FIELD) 36 @XmlType(name = "createReservation", propOrder = { 37 "carId", 38 "startDate", 39 "endDate", 40 "customerId", 41 "startAgencyId", 42 "endAgencyId" 43 }) 44 public class CreateReservation { 45 46 protected String carId; 47 protected XMLGregorianCalendar startDate; 48 protected XMLGregorianCalendar endDate; 49 protected String customerId; 50 protected String startAgencyId; 51 protected String endAgencyId; 52 53 61 public String getCarId() { 62 return carId; 63 } 64 65 73 public void setCarId(String value) { 74 this.carId = value; 75 } 76 77 85 public XMLGregorianCalendar getStartDate() { 86 return startDate; 87 } 88 89 97 public void setStartDate(XMLGregorianCalendar value) { 98 this.startDate = value; 99 } 100 101 109 public XMLGregorianCalendar getEndDate() { 110 return endDate; 111 } 112 113 121 public void setEndDate(XMLGregorianCalendar value) { 122 this.endDate = value; 123 } 124 125 133 public String getCustomerId() { 134 return customerId; 135 } 136 137 145 public void setCustomerId(String value) { 146 this.customerId = value; 147 } 148 149 157 public String getStartAgencyId() { 158 return startAgencyId; 159 } 160 161 169 public void setStartAgencyId(String value) { 170 this.startAgencyId = value; 171 } 172 173 181 public String getEndAgencyId() { 182 return endAgencyId; 183 } 184 185 193 public void setEndAgencyId(String value) { 194 this.endAgencyId = value; 195 } 196 197 } 198 | Popular Tags |