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