PageRenderTime 19ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/Prototipo/wsConsume/build/generated/jax-wsCache/wsTransformador/wsconsume/GetDataFiltroResponse.java

http://prototipomemoria.googlecode.com/
Java | 62 lines | 19 code | 8 blank | 35 comment | 0 complexity | 6352af903e930e79992eb0f7f764aea7 MD5 | raw file
Possible License(s): BSD-3-Clause
  1. package wsconsume;
  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 getDataFiltroResponse complex type.
  8. *
  9. * <p>The following schema fragment specifies the expected content contained within this class.
  10. *
  11. * <pre>
  12. * &lt;complexType name="getDataFiltroResponse">
  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 = "getDataFiltroResponse", propOrder = {
  27. "_return"
  28. })
  29. public class GetDataFiltroResponse {
  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. }