1 2 package org.objectweb.rentacar.agency.services.reservation.jaxws; 3 4 import java.util.Set ; 5 import javax.xml.bind.annotation.AccessType; 6 import javax.xml.bind.annotation.XmlAccessorType; 7 import javax.xml.bind.annotation.XmlElement; 8 import javax.xml.bind.annotation.XmlRootElement; 9 import javax.xml.bind.annotation.XmlType; 10 import org.objectweb.rentacar.agency.services.reservation.jaxws.ConsultCustomersResponse; 11 12 @XmlRootElement(name = "consultCustomersResponse", namespace = "http://reservation.services.agency.rentacar.objectweb.org/") 13 @XmlAccessorType(AccessType.FIELD) 14 @XmlType(name = "consultCustomersResponse", namespace = "http://reservation.services.agency.rentacar.objectweb.org/") 15 public class ConsultCustomersResponse { 16 17 @XmlElement(name = "return", namespace = "") 18 private Set _return; 19 20 25 public Set get_return() { 26 return this._return; 27 } 28 29 34 public void set_return(Set _return) { 35 this._return = _return; 36 } 37 38 } 39 | Popular Tags |