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.CarDeLuxeVO; 8 import org.objectweb.rentacar.services.client.CarVO; 9 10 11 33 @XmlAccessorType(AccessType.FIELD) 34 @XmlType(name = "carDeLuxeVO", propOrder = { 35 "fridge", 36 "smallBar", 37 "swimingpool", 38 "television" 39 }) 40 public class CarDeLuxeVO 41 extends CarVO 42 { 43 44 protected String fridge; 45 protected String smallBar; 46 protected String swimingpool; 47 protected String television; 48 49 57 public String getFridge() { 58 return fridge; 59 } 60 61 69 public void setFridge(String value) { 70 this.fridge = value; 71 } 72 73 81 public String getSmallBar() { 82 return smallBar; 83 } 84 85 93 public void setSmallBar(String value) { 94 this.smallBar = value; 95 } 96 97 105 public String getSwimingpool() { 106 return swimingpool; 107 } 108 109 117 public void setSwimingpool(String value) { 118 this.swimingpool = value; 119 } 120 121 129 public String getTelevision() { 130 return television; 131 } 132 133 141 public void setTelevision(String value) { 142 this.television = value; 143 } 144 145 } 146 | Popular Tags |