KickJava   Java API By Example, From Geeks To Geeks.

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


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 org.objectweb.rentacar.services.client.CloseReservation;
8
9
10 /**
11  * <p>Java class for closeReservation complex type.
12  *
13  * <p>The following schema fragment specifies the expected content contained within this class.
14  *
15  * <pre>
16  * &lt;complexType name="closeReservation">
17  * &lt;complexContent>
18  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
19  * &lt;sequence>
20  * &lt;element name="reservationCode" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
21  * &lt;/sequence>
22  * &lt;/restriction>
23  * &lt;/complexContent>
24  * &lt;/complexType>
25  * </pre>
26  *
27  *
28  */

29 @XmlAccessorType(AccessType.FIELD)
30 @XmlType(name = "closeReservation", propOrder = {
31     "reservationCode"
32 })
33 public class CloseReservation {
34
35     protected String JavaDoc reservationCode;
36
37     /**
38      * Gets the value of the reservationCode property.
39      *
40      * @return
41      * possible object is
42      * {@link String }
43      *
44      */

45     public String JavaDoc getReservationCode() {
46         return reservationCode;
47     }
48
49     /**
50      * Sets the value of the reservationCode property.
51      *
52      * @param value
53      * allowed object is
54      * {@link String }
55      *
56      */

57     public void setReservationCode(String JavaDoc value) {
58         this.reservationCode = value;
59     }
60
61 }
62
Popular Tags