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.AgencyVO; 11 import org.objectweb.rentacar.services.client.RetreiveAgenciesResponse; 12 13 14 33 @XmlAccessorType(AccessType.FIELD) 34 @XmlType(name = "retreiveAgenciesResponse", propOrder = { 35 "_return" 36 }) 37 public class RetreiveAgenciesResponse { 38 39 @XmlElement(name = "return") 40 protected List <AgencyVO> _return; 41 42 64 public List <AgencyVO> getReturn() { 65 if (_return == null) { 66 _return = new ArrayList <AgencyVO>(); 67 } 68 return this._return; 69 } 70 71 } 72 | Popular Tags |