QueryByNameResponse.java 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package com.cxfws.client.service.jyr;
  2. import javax.xml.bind.annotation.XmlAccessType;
  3. import javax.xml.bind.annotation.XmlAccessorType;
  4. import javax.xml.bind.annotation.XmlElement;
  5. import javax.xml.bind.annotation.XmlType;
  6. import com.cxfws.client.service.entity.JyrEntity;
  7. /**
  8. * <p>Java class for queryByNameResponse complex type.
  9. *
  10. * <p>The following schema fragment specifies the expected content contained within this class.
  11. *
  12. * <pre>
  13. * &lt;complexType name="queryByNameResponse">
  14. * &lt;complexContent>
  15. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  16. * &lt;sequence>
  17. * &lt;element name="return" type="{http://webService.yjpt.com/}jyrEntity" minOccurs="0"/>
  18. * &lt;/sequence>
  19. * &lt;/restriction>
  20. * &lt;/complexContent>
  21. * &lt;/complexType>
  22. * </pre>
  23. *
  24. *
  25. */
  26. @XmlAccessorType(XmlAccessType.FIELD)
  27. @XmlType(name = "queryByNameResponse", propOrder = {
  28. "_return"
  29. })
  30. public class QueryByNameResponse {
  31. @XmlElement(name = "return")
  32. protected JyrEntity _return;
  33. /**
  34. * Gets the value of the return property.
  35. *
  36. * @return
  37. * possible object is
  38. * {@link JyrEntity }
  39. *
  40. */
  41. public JyrEntity getReturn() {
  42. return _return;
  43. }
  44. /**
  45. * Sets the value of the return property.
  46. *
  47. * @param value
  48. * allowed object is
  49. * {@link JyrEntity }
  50. *
  51. */
  52. public void setReturn(JyrEntity value) {
  53. this._return = value;
  54. }
  55. }