HandlingReportServiceService.java 2.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. package com.aggregator;
  2. import javax.xml.namespace.QName;
  3. import javax.xml.ws.Service;
  4. import javax.xml.ws.WebEndpoint;
  5. import javax.xml.ws.WebServiceClient;
  6. import javax.xml.ws.WebServiceFeature;
  7. import java.net.MalformedURLException;
  8. import java.net.URL;
  9. /**
  10. * This class was generated by the JAX-WS RI.
  11. * JAX-WS RI 2.1.1 in JDK 6
  12. * Generated source version: 2.1
  13. *
  14. */
  15. @WebServiceClient(name = "HandlingReportServiceService", targetNamespace = "http://ws.handling.interfaces.dddsample.citerus.se/", wsdlLocation = "file:///Users/peter/src/dddsample/src/main/resources/HandlingReportService.wsdl")
  16. public class HandlingReportServiceService
  17. extends Service
  18. {
  19. private final static URL HANDLINGREPORTSERVICESERVICE_WSDL_LOCATION;
  20. static {
  21. URL url = null;
  22. try {
  23. url = new URL("file:/Users/peter/src/dddsample/src/main/resources/HandlingReportService.wsdl");
  24. } catch (MalformedURLException e) {
  25. e.printStackTrace();
  26. }
  27. HANDLINGREPORTSERVICESERVICE_WSDL_LOCATION = url;
  28. }
  29. public HandlingReportServiceService(URL wsdlLocation, QName serviceName) {
  30. super(wsdlLocation, serviceName);
  31. }
  32. public HandlingReportServiceService() {
  33. super(HANDLINGREPORTSERVICESERVICE_WSDL_LOCATION, new QName("http://ws.handling.interfaces.dddsample.citerus.se/", "HandlingReportServiceService"));
  34. }
  35. /**
  36. *
  37. * @return
  38. * returns HandlingReportService
  39. */
  40. @WebEndpoint(name = "HandlingReportServicePort")
  41. public HandlingReportService getHandlingReportServicePort() {
  42. return (HandlingReportService)super.getPort(new QName("http://ws.handling.interfaces.dddsample.citerus.se/", "HandlingReportServicePort"), HandlingReportService.class);
  43. }
  44. /**
  45. *
  46. * @param features
  47. * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the <code>features</code> parameter will have their default values.
  48. * @return
  49. * returns HandlingReportService
  50. */
  51. @WebEndpoint(name = "HandlingReportServicePort")
  52. public HandlingReportService getHandlingReportServicePort(WebServiceFeature... features) {
  53. return (HandlingReportService)super.getPort(new QName("http://ws.handling.interfaces.dddsample.citerus.se/", "HandlingReportServicePort"), HandlingReportService.class, features);
  54. }
  55. }