SubmitReport.java 1.3KB

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