49bc8c8b5d17b388d5606db8530d43f8a9f2c197.svn-base 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package cn.com.goldenwater.webService.onemap;
  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. /**
  7. * <p>
  8. * Java class for executeResponse complex type.
  9. *
  10. * <p>
  11. * The following schema fragment specifies the expected content contained within
  12. * this class.
  13. *
  14. * <pre>
  15. * &lt;complexType name="executeResponse">
  16. * &lt;complexContent>
  17. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  18. * &lt;sequence>
  19. * &lt;element name="return" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
  20. * &lt;/sequence>
  21. * &lt;/restriction>
  22. * &lt;/complexContent>
  23. * &lt;/complexType>
  24. * </pre>
  25. */
  26. @XmlAccessorType(XmlAccessType.FIELD)
  27. @XmlType(name = "executeResponse", propOrder = {"_return"})
  28. public class ExecuteResponse {
  29. @XmlElement(name = "return")
  30. protected String _return;
  31. /**
  32. * Gets the value of the return property.
  33. *
  34. * @return possible object is {@link String }
  35. */
  36. public String getReturn() {
  37. return _return;
  38. }
  39. /**
  40. * Sets the value of the return property.
  41. *
  42. * @param value allowed object is {@link String }
  43. */
  44. public void setReturn(String value) {
  45. this._return = value;
  46. }
  47. }