SubmitReportResponse.java 745B

123456789101112131415161718192021222324252627282930
  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 submitReportResponse complex type.
  7. * <p/>
  8. * <p>The following schema fragment specifies the expected content contained within this class.
  9. * <p/>
  10. * <pre>
  11. * &lt;complexType name="submitReportResponse">
  12. * &lt;complexContent>
  13. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
  14. * &lt;sequence>
  15. * &lt;/sequence>
  16. * &lt;/restriction>
  17. * &lt;/complexContent>
  18. * &lt;/complexType>
  19. * </pre>
  20. */
  21. @XmlAccessorType(XmlAccessType.FIELD)
  22. @XmlType(name = "submitReportResponse")
  23. public class SubmitReportResponse {
  24. }