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.CarVO; 8 9 10 32 @XmlAccessorType(AccessType.FIELD) 33 @XmlType(name = "carVO", propOrder = { 34 "brand", 35 "carId", 36 "model", 37 "type" 38 }) 39 public class CarVO { 40 41 protected String brand; 42 protected String carId; 43 protected String model; 44 protected String type; 45 46 54 public String getBrand() { 55 return brand; 56 } 57 58 66 public void setBrand(String value) { 67 this.brand = value; 68 } 69 70 78 public String getCarId() { 79 return carId; 80 } 81 82 90 public void setCarId(String value) { 91 this.carId = value; 92 } 93 94 102 public String getModel() { 103 return model; 104 } 105 106 114 public void setModel(String value) { 115 this.model = value; 116 } 117 118 126 public String getType() { 127 return type; 128 } 129 130 138 public void setType(String value) { 139 this.type = value; 140 } 141 142 } 143 | Popular Tags |