DeleteTodo.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. package com.landray.kmss.sys.notify.webservice;
  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 deleteTodo complex type.
  7. *
  8. * <p>The following schema fragment specifies the expected content contained within this class.
  9. *
  10. * <pre>
  11. * &lt;complexType name="deleteTodo">
  12. * &lt;complexContent>
  13. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  14. * &lt;sequence>
  15. * &lt;element name="arg0" type="{http://webservice.notify.sys.kmss.landray.com/}notifyTodoRemoveContext" 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 = "deleteTodo", propOrder = {
  26. "arg0"
  27. })
  28. public class DeleteTodo {
  29. protected NotifyTodoRemoveContext arg0;
  30. /**
  31. * Gets the value of the arg0 property.
  32. *
  33. * @return
  34. * possible object is
  35. * {@link NotifyTodoRemoveContext }
  36. *
  37. */
  38. public NotifyTodoRemoveContext getArg0() {
  39. return arg0;
  40. }
  41. /**
  42. * Sets the value of the arg0 property.
  43. *
  44. * @param value
  45. * allowed object is
  46. * {@link NotifyTodoRemoveContext }
  47. *
  48. */
  49. public void setArg0(NotifyTodoRemoveContext value) {
  50. this.arg0 = value;
  51. }
  52. }