KickJava   Java API By Example, From Geeks To Geeks.

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


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.AddressVO;
8 import org.objectweb.rentacar.services.client.ContactVO;
9
10
11 /**
12  * <p>Java class for contactVO complex type.
13  *
14  * <p>The following schema fragment specifies the expected content contained within this class.
15  *
16  * <pre>
17  * &lt;complexType name="contactVO">
18  * &lt;complexContent>
19  * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
20  * &lt;sequence>
21  * &lt;element name="address" type="{http://consultation.services.centraloffice.rentacar.objectweb.org/}addressVO" minOccurs="0"/>
22  * &lt;element name="contactId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
23  * &lt;element name="email" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
24  * &lt;element name="firstName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
25  * &lt;element name="lastName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
26  * &lt;element name="phone" 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 = "contactVO", propOrder = {
37     "address",
38     "contactId",
39     "email",
40     "firstName",
41     "lastName",
42     "phone"
43 })
44 public class ContactVO {
45
46     protected AddressVO address;
47     protected String JavaDoc contactId;
48     protected String JavaDoc email;
49     protected String JavaDoc firstName;
50     protected String JavaDoc lastName;
51     protected String JavaDoc phone;
52
53     /**
54      * Gets the value of the address property.
55      *
56      * @return
57      * possible object is
58      * {@link AddressVO }
59      *
60      */

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

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

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

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

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

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

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

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

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

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

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

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