KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > rentacar > services > client > ConsultAvailability


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 JavaDoc;
8 import org.objectweb.rentacar.services.client.CarCriteria;
9 import org.objectweb.rentacar.services.client.ConsultAvailability;
10
11
12 /**
13  * <p>Java class for consultAvailability complex type.
14  *
15  * <p>The following schema fragment specifies the expected content contained within this class.
16  *
17  * <pre>
18  * &lt;complexType name="consultAvailability">
19  * &lt;complexContent>
20  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21  * &lt;sequence>
22  * &lt;element name="criterium" type="{http://availability.services.agency.rentacar.objectweb.org/}carCriteria" minOccurs="0"/>
23  * &lt;element name="startDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
24  * &lt;element name="endDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
25  * &lt;/sequence>
26  * &lt;/restriction>
27  * &lt;/complexContent>
28  * &lt;/complexType>
29  * </pre>
30  *
31  *
32  */

33 @XmlAccessorType(AccessType.FIELD)
34 @XmlType(name = "consultAvailability", propOrder = {
35     "criterium",
36     "startDate",
37     "endDate"
38 })
39 public class ConsultAvailability {
40
41     protected CarCriteria criterium;
42     protected XMLGregorianCalendar JavaDoc startDate;
43     protected XMLGregorianCalendar JavaDoc endDate;
44
45     /**
46      * Gets the value of the criterium property.
47      *
48      * @return
49      * possible object is
50      * {@link CarCriteria }
51      *
52      */

53     public CarCriteria getCriterium() {
54         return criterium;
55     }
56
57     /**
58      * Sets the value of the criterium property.
59      *
60      * @param value
61      * allowed object is
62      * {@link CarCriteria }
63      *
64      */

65     public void setCriterium(CarCriteria value) {
66         this.criterium = value;
67     }
68
69     /**
70      * Gets the value of the startDate property.
71      *
72      * @return
73      * possible object is
74      * {@link XMLGregorianCalendar }
75      *
76      */

77     public XMLGregorianCalendar JavaDoc getStartDate() {
78         return startDate;
79     }
80
81     /**
82      * Sets the value of the startDate property.
83      *
84      * @param value
85      * allowed object is
86      * {@link XMLGregorianCalendar }
87      *
88      */

89     public void setStartDate(XMLGregorianCalendar JavaDoc value) {
90         this.startDate = value;
91     }
92
93     /**
94      * Gets the value of the endDate property.
95      *
96      * @return
97      * possible object is
98      * {@link XMLGregorianCalendar }
99      *
100      */

101     public XMLGregorianCalendar JavaDoc getEndDate() {
102         return endDate;
103     }
104
105     /**
106      * Sets the value of the endDate property.
107      *
108      * @param value
109      * allowed object is
110      * {@link XMLGregorianCalendar }
111      *
112      */

113     public void setEndDate(XMLGregorianCalendar JavaDoc value) {
114         this.endDate = value;
115     }
116
117 }
118
Popular Tags