01: package org.apache.axis2.jaxws.proxy.rpclitswa.sei;
02:
03: import java.net.MalformedURLException;
04: import java.net.URL;
05: import javax.xml.namespace.QName;
06: import javax.xml.ws.Service;
07: import javax.xml.ws.WebEndpoint;
08: import javax.xml.ws.WebServiceClient;
09:
10: /**
11: * This class was generated by the JAXWS SI.
12: * JAX-WS RI 2.0_01-b15-fcs
13: * Generated source version: 2.0
14: *
15: */
16: @WebServiceClient(name="RPCLitSWAService",targetNamespace="http://org/apache/axis2/jaxws/proxy/rpclitswa",wsdlLocation="rpclitswa.wsdl")
17: public class RPCLitSWAService extends Service {
18:
19: private final static URL RPCLITSWAERVICE_WSDL_LOCATION;
20:
21: static {
22: URL url = null;
23: try {
24: url = new URL("file:/C:/defects/rpclitswa.wsdl");
25: } catch (MalformedURLException e) {
26: e.printStackTrace();
27: }
28: RPCLITSWAERVICE_WSDL_LOCATION = url;
29: }
30:
31: public RPCLitSWAService(URL wsdlLocation, QName serviceName) {
32: super (wsdlLocation, serviceName);
33: }
34:
35: public RPCLitSWAService() {
36: super (RPCLITSWAERVICE_WSDL_LOCATION, new QName(
37: "http://org/apache/axis2/jaxws/proxy/rpclitswa",
38: "RPCLitSWAService"));
39: }
40:
41: /**
42: *
43: * @return
44: * returns RPCLitSWA
45: */
46: @WebEndpoint(name="RPCLitSWA")
47: public RPCLitSWA getRPCLitSWA() {
48: return (RPCLitSWA) super .getPort(new QName(
49: "http://org/apache/axis2/jaxws/proxy/rpclitswa",
50: "RPCLitSWA"), RPCLitSWA.class);
51: }
52:
53: }
|