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.CloseReservation; 8 9 10 29 @XmlAccessorType(AccessType.FIELD) 30 @XmlType(name = "closeReservation", propOrder = { 31 "reservationCode" 32 }) 33 public class CloseReservation { 34 35 protected String reservationCode; 36 37 45 public String getReservationCode() { 46 return reservationCode; 47 } 48 49 57 public void setReservationCode(String value) { 58 this.reservationCode = value; 59 } 60 61 } 62 | Popular Tags |