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.AgencyCriteria; 8 import org.objectweb.rentacar.services.client.RetreiveAgencies; 9 10 11 30 @XmlAccessorType(AccessType.FIELD) 31 @XmlType(name = "retreiveAgencies", propOrder = { 32 "agencyCriteria" 33 }) 34 public class RetreiveAgencies { 35 36 protected AgencyCriteria agencyCriteria; 37 38 46 public AgencyCriteria getAgencyCriteria() { 47 return agencyCriteria; 48 } 49 50 58 public void setAgencyCriteria(AgencyCriteria value) { 59 this.agencyCriteria = value; 60 } 61 62 } 63 | Popular Tags |