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.XmlElement; 7 import javax.xml.bind.annotation.XmlType; 8 import org.objectweb.rentacar.services.client.CreateReservationResponse; 9 10 11 30 @XmlAccessorType(AccessType.FIELD) 31 @XmlType(name = "createReservationResponse", propOrder = { 32 "_return" 33 }) 34 public class CreateReservationResponse { 35 36 @XmlElement(name = "return") 37 protected String _return; 38 39 47 public String getReturn() { 48 return _return; 49 } 50 51 59 public void setReturn(String value) { 60 this._return = value; 61 } 62 63 } 64 | Popular Tags |