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 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 contactId; 48 protected String email; 49 protected String firstName; 50 protected String lastName; 51 protected String phone; 52 53 61 public AddressVO getAddress() { 62 return address; 63 } 64 65 73 public void setAddress(AddressVO value) { 74 this.address = value; 75 } 76 77 85 public String getContactId() { 86 return contactId; 87 } 88 89 97 public void setContactId(String value) { 98 this.contactId = value; 99 } 100 101 109 public String getEmail() { 110 return email; 111 } 112 113 121 public void setEmail(String value) { 122 this.email = value; 123 } 124 125 133 public String getFirstName() { 134 return firstName; 135 } 136 137 145 public void setFirstName(String value) { 146 this.firstName = value; 147 } 148 149 157 public String getLastName() { 158 return lastName; 159 } 160 161 169 public void setLastName(String value) { 170 this.lastName = value; 171 } 172 173 181 public String getPhone() { 182 return phone; 183 } 184 185 193 public void setPhone(String value) { 194 this.phone = value; 195 } 196 197 } 198 | Popular Tags |