HandlingReportService.java 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package com.aggregator;
  2. import javax.jws.WebMethod;
  3. import javax.jws.WebParam;
  4. import javax.jws.WebService;
  5. import javax.xml.bind.annotation.XmlSeeAlso;
  6. import javax.xml.ws.RequestWrapper;
  7. import javax.xml.ws.ResponseWrapper;
  8. /**
  9. * This class was generated by the JAX-WS RI.
  10. * JAX-WS RI 2.1.1 in JDK 6
  11. * Generated source version: 2.1
  12. *
  13. */
  14. @WebService(name = "HandlingReportService", targetNamespace = "http://ws.handling.interfaces.dddsample.citerus.se/")
  15. @XmlSeeAlso({
  16. ObjectFactory.class
  17. })
  18. public interface HandlingReportService {
  19. /**
  20. *
  21. * @param arg0
  22. * @throws HandlingReportErrors_Exception
  23. */
  24. @WebMethod
  25. @RequestWrapper(localName = "submitReport", targetNamespace = "http://ws.handling.interfaces.dddsample.citerus.se/", className = "com.aggregator.SubmitReport")
  26. @ResponseWrapper(localName = "submitReportResponse", targetNamespace = "http://ws.handling.interfaces.dddsample.citerus.se/", className = "com.aggregator.SubmitReportResponse")
  27. public void submitReport(
  28. @WebParam(name = "arg0", targetNamespace = "")
  29. HandlingReport arg0)
  30. throws HandlingReportErrors_Exception
  31. ;
  32. }