KickJava   Java API By Example, From Geeks To Geeks.

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


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

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

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

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

75     public String JavaDoc getModel() {
76         return model;
77     }
78
79     /**
80      * Sets the value of the model property.
81      *
82      * @param value
83      * allowed object is
84      * {@link String }
85      *
86      */

87     public void setModel(String JavaDoc value) {
88         this.model = value;
89     }
90
91     /**
92      * Gets the value of the type property.
93      *
94      * @return
95      * possible object is
96      * {@link String }
97      *
98      */

99     public String JavaDoc getType() {
100         return type;
101     }
102
103     /**
104      * Sets the value of the type property.
105      *
106      * @param value
107      * allowed object is
108      * {@link String }
109      *
110      */

111     public void setType(String JavaDoc value) {
112         this.type = value;
113     }
114
115 }
116
Popular Tags