View Javadoc

1   
2   package org.fosstrak.capturingapp.wsdl;
3   
4   import javax.jws.WebMethod;
5   import javax.jws.WebParam;
6   import javax.jws.WebResult;
7   import javax.jws.WebService;
8   import javax.jws.soap.SOAPBinding;
9   import javax.jws.soap.SOAPBinding.ParameterStyle;
10  
11  /**
12   * This class was generated by Apache CXF 2.0.9
13   * Tue Aug 18 00:55:17 CEST 2009
14   * Generated source version: 2.0.9
15   * 
16   */
17  
18  @WebService(targetNamespace = "urn:wsdl:capturingapp:fosstrak:org", name = "CaptureAppPortType")
19  @SOAPBinding(parameterStyle = SOAPBinding.ParameterStyle.BARE)
20  
21  public interface CaptureAppPortType {
22  
23      @WebResult(name = "GetCaptureAppNamesResult", targetNamespace = "urn:wsdl:capturingapp:fosstrak:org", partName = "getCaptureAppNamesReturn")
24      @WebMethod
25      public org.fosstrak.capturingapp.wsdl.ArrayOfString getCaptureAppNames(
26          @WebParam(partName = "parms", name = "GetCaptureAppNames", targetNamespace = "urn:wsdl:capturingapp:fosstrak:org")
27          EmptyParms parms
28      );
29  }