1 package org.objectweb.rentacar.persistance.bo; 2 3 public class CarCriteria { 4 5 private String type; 6 7 private String model; 8 9 private String brand; 10 11 private String carId; 12 13 14 15 public CarCriteria(String type, String model, String brand, String carId) { 16 super(); 17 this.type = type; 18 this.model = model; 19 this.brand = brand; 20 this.carId= carId; 21 } 22 23 public CarCriteria() { 24 super(); 25 } 26 27 public String getBrand() { 28 return brand; 29 } 30 31 public void setBrand(String brand) { 32 this.brand = brand; 33 } 34 35 public String getModel() { 36 return model; 37 } 38 39 public void setModel(String model) { 40 this.model = model; 41 } 42 43 public String getType() { 44 return type; 45 } 46 47 public void setType(String type) { 48 this.type = type; 49 } 50 51 public String getCarId() { 52 return carId; 53 } 54 55 public void setCarId(String carId) { 56 this.carId = carId; 57 } 58 59 60 } 61 | Popular Tags |