1 2 package org.objectweb.rentacar.agency.services.reservation.jaxws; 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.XmlRootElement; 8 import javax.xml.bind.annotation.XmlType; 9 import org.objectweb.rentacar.agency.services.reservation.jaxws.ConsultCustomers; 10 import org.objectweb.rentacar.persistance.bo.ContactCriteria; 11 12 @XmlRootElement(name = "consultCustomers", namespace = "http://reservation.services.agency.rentacar.objectweb.org/") 13 @XmlAccessorType(AccessType.FIELD) 14 @XmlType(name = "consultCustomers", namespace = "http://reservation.services.agency.rentacar.objectweb.org/") 15 public class ConsultCustomers { 16 17 @XmlElement(name = "criterion", namespace = "") 18 private ContactCriteria criterion; 19 20 25 public ContactCriteria getCriterion() { 26 return this.criterion; 27 } 28 29 34 public void setCriterion(ContactCriteria criterion) { 35 this.criterion = criterion; 36 } 37 38 } 39 | Popular Tags |