KickJava   Java API By Example, From Geeks To Geeks.

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


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

32 @XmlAccessorType(AccessType.FIELD)
33 @XmlType(name = "carVO", propOrder = {
34     "brand",
35     "carId",
36     "model",
37     "type"
38 })
39 public class CarVO {
40
41     protected String JavaDoc brand;
42     protected String JavaDoc carId;
43     protected String JavaDoc model;
44     protected String JavaDoc type;
45
46     /**
47      * Gets the value of the brand property.
48      *
49      * @return
50      * possible object is
51      * {@link String }
52      *
53      */

54     public String JavaDoc getBrand() {
55         return brand;
56     }
57
58     /**
59      * Sets the value of the brand property.
60      *
61      * @param value
62      * allowed object is
63      * {@link String }
64      *
65      */

66     public void setBrand(String JavaDoc value) {
67         this.brand = value;
68     }
69
70     /**
71      * Gets the value of the carId property.
72      *
73      * @return
74      * possible object is
75      * {@link String }
76      *
77      */

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

90     public void setCarId(String JavaDoc value) {
91         this.carId = value;
92     }
93
94     /**
95      * Gets the value of the model property.
96      *
97      * @return
98      * possible object is
99      * {@link String }
100      *
101      */

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

114     public void setModel(String JavaDoc value) {
115         this.model = value;
116     }
117
118     /**
119      * Gets the value of the type property.
120      *
121      * @return
122      * possible object is
123      * {@link String }
124      *
125      */

126     public String JavaDoc getType() {
127         return type;
128     }
129
130     /**
131      * Sets the value of the type property.
132      *
133      * @param value
134      * allowed object is
135      * {@link String }
136      *
137      */

138     public void setType(String JavaDoc value) {
139         this.type = value;
140     }
141
142 }
143
Popular Tags