/Prototipo/wsConsume/build/generated-sources/jax-ws/wsconsume/GetData.java

http://prototipomemoria.googlecode.com/ · Java · 60 lines · 17 code · 8 blank · 35 comment · 0 complexity · 9e75cf4268a48b06880928bfddf32c8e MD5 · raw file

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