80d5a0618103b984a085d8d25e0fcd08ff0a085a.svn-base 1.4 KB

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