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 30 @XmlAccessorType(AccessType.FIELD) 31 @XmlType(name = "contactCriteria", propOrder = { 32 "firstName", 33 "lastName" 34 }) 35 public class ContactCriteria { 36 37 protected String firstName; 38 protected String lastName; 39 40 48 public String getFirstName() { 49 return firstName; 50 } 51 52 60 public void setFirstName(String value) { 61 this.firstName = value; 62 } 63 64 72 public String getLastName() { 73 return lastName; 74 } 75 76 84 public void setLastName(String value) { 85 this.lastName = value; 86 } 87 88 } 89 | Popular Tags |