1 2 package org.objectweb.rentacar.services.client; 3 4 import java.util.ArrayList ; 5 import java.util.List ; 6 import javax.xml.bind.annotation.AccessType; 7 import javax.xml.bind.annotation.XmlAccessorType; 8 import javax.xml.bind.annotation.XmlElement; 9 import javax.xml.bind.annotation.XmlType; 10 import org.objectweb.rentacar.services.client.CarVO; 11 import org.objectweb.rentacar.services.client.ConsultAvailabilityResponse; 12 13 14 33 @XmlAccessorType(AccessType.FIELD) 34 @XmlType(name = "consultAvailabilityResponse", propOrder = { 35 "_return" 36 }) 37 public class ConsultAvailabilityResponse { 38 39 @XmlElement(name = "return") 40 protected List <CarVO> _return; 41 42 64 public List <CarVO> getReturn() { 65 if (_return == null) { 66 _return = new ArrayList <CarVO>(); 67 } 68 return this._return; 69 } 70 71 } 72 | Popular Tags |