KickJava   Java API By Example, From Geeks To Geeks.

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


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.AgencyCriteria;
8
9
10 /**
11  * <p>Java class for agencyCriteria complex type.
12  *
13  * <p>The following schema fragment specifies the expected content contained within this class.
14  *
15  * <pre>
16  * &lt;complexType name="agencyCriteria">
17  * &lt;complexContent>
18  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
19  * &lt;sequence>
20  * &lt;element name="agencyId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
21  * &lt;element name="lastName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
22  * &lt;element name="zipPattern" 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 = "agencyCriteria", propOrder = {
33     "agencyId",
34     "lastName",
35     "zipPattern"
36 })
37 public class AgencyCriteria {
38
39     protected String JavaDoc agencyId;
40     protected String JavaDoc lastName;
41     protected String JavaDoc zipPattern;
42
43     /**
44      * Gets the value of the agencyId property.
45      *
46      * @return
47      * possible object is
48      * {@link String }
49      *
50      */

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

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

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

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

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

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