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.CarCriteria; 8 9 10 31 @XmlAccessorType(AccessType.FIELD) 32 @XmlType(name = "carCriteria", propOrder = { 33 "brand", 34 "model", 35 "type" 36 }) 37 public class CarCriteria { 38 39 protected String brand; 40 protected String model; 41 protected String type; 42 43 51 public String getBrand() { 52 return brand; 53 } 54 55 63 public void setBrand(String value) { 64 this.brand = value; 65 } 66 67 75 public String getModel() { 76 return model; 77 } 78 79 87 public void setModel(String value) { 88 this.model = value; 89 } 90 91 99 public String getType() { 100 return type; 101 } 102 103 111 public void setType(String value) { 112 this.type = value; 113 } 114 115 } 116 | Popular Tags |