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.CarCriteria; 9 import org.objectweb.rentacar.services.client.Consult; 10 11 12 33 @XmlAccessorType(AccessType.FIELD) 34 @XmlType(name = "consult", propOrder = { 35 "criterium", 36 "startDate", 37 "endDate" 38 }) 39 public class Consult { 40 41 protected CarCriteria criterium; 42 protected XMLGregorianCalendar startDate; 43 protected XMLGregorianCalendar endDate; 44 45 53 public CarCriteria getCriterium() { 54 return criterium; 55 } 56 57 65 public void setCriterium(CarCriteria value) { 66 this.criterium = value; 67 } 68 69 77 public XMLGregorianCalendar getStartDate() { 78 return startDate; 79 } 80 81 89 public void setStartDate(XMLGregorianCalendar value) { 90 this.startDate = value; 91 } 92 93 101 public XMLGregorianCalendar getEndDate() { 102 return endDate; 103 } 104 105 113 public void setEndDate(XMLGregorianCalendar value) { 114 this.endDate = value; 115 } 116 117 } 118 | Popular Tags |