KickJava   Java API By Example, From Geeks To Geeks.

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


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.AddReservationInCentralDB;
9
10
11 /**
12  * <p>Java class for addReservationInCentralDB complex type.
13  *
14  * <p>The following schema fragment specifies the expected content contained within this class.
15  *
16  * <pre>
17  * &lt;complexType name="addReservationInCentralDB">
18  * &lt;complexContent>
19  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20  * &lt;sequence>
21  * &lt;element name="customerId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
22  * &lt;element name="carId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
23  * &lt;element name="startingDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
24  * &lt;element name="endingDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
25  * &lt;element name="startingAgencyId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
26  * &lt;element name="endingAgencyId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
27  * &lt;/sequence>
28  * &lt;/restriction>
29  * &lt;/complexContent>
30  * &lt;/complexType>
31  * </pre>
32  *
33  *
34  */

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 JavaDoc customerId;
47     protected String JavaDoc carId;
48     protected XMLGregorianCalendar JavaDoc startingDate;
49     protected XMLGregorianCalendar JavaDoc endingDate;
50     protected String JavaDoc startingAgencyId;
51     protected String JavaDoc endingAgencyId;
52
53     /**
54      * Gets the value of the customerId property.
55      *
56      * @return
57      * possible object is
58      * {@link String }
59      *
60      */

61     public String JavaDoc getCustomerId() {
62         return customerId;
63     }
64
65     /**
66      * Sets the value of the customerId property.
67      *
68      * @param value
69      * allowed object is
70      * {@link String }
71      *
72      */

73     public void setCustomerId(String JavaDoc value) {
74         this.customerId = value;
75     }
76
77     /**
78      * Gets the value of the carId property.
79      *
80      * @return
81      * possible object is
82      * {@link String }
83      *
84      */

85     public String JavaDoc getCarId() {
86         return carId;
87     }
88
89     /**
90      * Sets the value of the carId property.
91      *
92      * @param value
93      * allowed object is
94      * {@link String }
95      *
96      */

97     public void setCarId(String JavaDoc value) {
98         this.carId = value;
99     }
100
101     /**
102      * Gets the value of the startingDate property.
103      *
104      * @return
105      * possible object is
106      * {@link XMLGregorianCalendar }
107      *
108      */

109     public XMLGregorianCalendar JavaDoc getStartingDate() {
110         return startingDate;
111     }
112
113     /**
114      * Sets the value of the startingDate property.
115      *
116      * @param value
117      * allowed object is
118      * {@link XMLGregorianCalendar }
119      *
120      */

121     public void setStartingDate(XMLGregorianCalendar JavaDoc value) {
122         this.startingDate = value;
123     }
124
125     /**
126      * Gets the value of the endingDate property.
127      *
128      * @return
129      * possible object is
130      * {@link XMLGregorianCalendar }
131      *
132      */

133     public XMLGregorianCalendar JavaDoc getEndingDate() {
134         return endingDate;
135     }
136
137     /**
138      * Sets the value of the endingDate property.
139      *
140      * @param value
141      * allowed object is
142      * {@link XMLGregorianCalendar }
143      *
144      */

145     public void setEndingDate(XMLGregorianCalendar JavaDoc value) {
146         this.endingDate = value;
147     }
148
149     /**
150      * Gets the value of the startingAgencyId property.
151      *
152      * @return
153      * possible object is
154      * {@link String }
155      *
156      */

157     public String JavaDoc getStartingAgencyId() {
158         return startingAgencyId;
159     }
160
161     /**
162      * Sets the value of the startingAgencyId property.
163      *
164      * @param value
165      * allowed object is
166      * {@link String }
167      *
168      */

169     public void setStartingAgencyId(String JavaDoc value) {
170         this.startingAgencyId = value;
171     }
172
173     /**
174      * Gets the value of the endingAgencyId property.
175      *
176      * @return
177      * possible object is
178      * {@link String }
179      *
180      */

181     public String JavaDoc getEndingAgencyId() {
182         return endingAgencyId;
183     }
184
185     /**
186      * Sets the value of the endingAgencyId property.
187      *
188      * @param value
189      * allowed object is
190      * {@link String }
191      *
192      */

193     public void setEndingAgencyId(String JavaDoc value) {
194         this.endingAgencyId = value;
195     }
196
197 }
198
Popular Tags