1
2 package com.aggregator;
3
4 import javax.jws.WebMethod;
5 import javax.jws.WebParam;
6 import javax.jws.WebService;
7 import javax.xml.bind.annotation.XmlSeeAlso;
8 import javax.xml.ws.RequestWrapper;
9 import javax.xml.ws.ResponseWrapper;
10
11
12
13
14
15
16
17
18 @WebService(name = "HandlingReportService", targetNamespace = "http://ws.handling.interfaces.dddsample.citerus.se/")
19 @XmlSeeAlso({
20 ObjectFactory.class
21 })
22 public interface HandlingReportService {
23
24
25
26
27
28
29
30 @WebMethod
31 @RequestWrapper(localName = "submitReport", targetNamespace = "http://ws.handling.interfaces.dddsample.citerus.se/", className = "com.aggregator.SubmitReport")
32 @ResponseWrapper(localName = "submitReportResponse", targetNamespace = "http://ws.handling.interfaces.dddsample.citerus.se/", className = "com.aggregator.SubmitReportResponse")
33 public void submitReport(
34 @WebParam(name = "arg0", targetNamespace = "")
35 HandlingReport arg0)
36 throws HandlingReportErrors_Exception
37 ;
38
39 }