View Javadoc

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   * This class was generated by the JAX-WS RI.
14   * JAX-WS RI 2.1.1 in JDK 6
15   * Generated source version: 2.1
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       * @param arg0
28       * @throws HandlingReportErrors_Exception
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  }