KickJava   Java API By Example, From Geeks To Geeks.

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


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

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

48     public String JavaDoc getFirstName() {
49         return firstName;
50     }
51
52     /**
53      * Sets the value of the firstName property.
54      *
55      * @param value
56      * allowed object is
57      * {@link String }
58      *
59      */

60     public void setFirstName(String JavaDoc value) {
61         this.firstName = value;
62     }
63
64     /**
65      * Gets the value of the lastName property.
66      *
67      * @return
68      * possible object is
69      * {@link String }
70      *
71      */

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

84     public void setLastName(String JavaDoc value) {
85         this.lastName = value;
86     }
87
88 }
89
Popular Tags