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 9 10 33 @XmlAccessorType(AccessType.FIELD) 34 @XmlType(name = "addressVO", propOrder = { 35 "address", 36 "addressId", 37 "city", 38 "country", 39 "zip" 40 }) 41 public class AddressVO { 42 43 protected String address; 44 protected String addressId; 45 protected String city; 46 protected String country; 47 protected String zip; 48 49 57 public String getAddress() { 58 return address; 59 } 60 61 69 public void setAddress(String value) { 70 this.address = value; 71 } 72 73 81 public String getAddressId() { 82 return addressId; 83 } 84 85 93 public void setAddressId(String value) { 94 this.addressId = value; 95 } 96 97 105 public String getCity() { 106 return city; 107 } 108 109 117 public void setCity(String value) { 118 this.city = value; 119 } 120 121 129 public String getCountry() { 130 return country; 131 } 132 133 141 public void setCountry(String value) { 142 this.country = value; 143 } 144 145 153 public String getZip() { 154 return zip; 155 } 156 157 165 public void setZip(String value) { 166 this.zip = value; 167 } 168 169 } 170 | Popular Tags |