1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 package org.oasis_open.docs.wsn.client;
23
24 import java.net.MalformedURLException;
25 import java.net.URL;
26 import java.util.logging.Logger;
27 import javax.xml.namespace.QName;
28 import javax.xml.ws.Service;
29 import javax.xml.ws.WebEndpoint;
30 import javax.xml.ws.WebServiceClient;
31 import javax.xml.ws.WebServiceFeature;
32 import org.oasis_open.docs.wsn.brw_2.PausableSubscriptionManager;
33 import org.oasis_open.docs.wsn.brw_2.PullPoint;
34
35
36
37
38
39
40
41
42 @WebServiceClient(name = "PausableSubscriptionManagerService", targetNamespace = "http://docs.oasis-open.org/wsn/brw-2"
43
44 )
45 public class PausableSubscriptionManagerService
46 extends Service
47 {
48
49 public static QName qname=new QName("http://docs.oasis-open.org/wsn/brw-2", "PausableSubscriptionManagerService");
50 private final static URL PAUSABLESUBSCRIPTIONMANAGERSERVICE_WSDL_LOCATION;
51 private final static Logger logger = Logger.getLogger(PausableSubscriptionManagerService.class.getName());
52
53 static {
54 ClassLoader cl = Thread.currentThread().getContextClassLoader();
55 if (cl != null) {
56 PAUSABLESUBSCRIPTIONMANAGERSERVICE_WSDL_LOCATION = cl.getResource("brw-2impl.wsdl");
57 } else {
58 PAUSABLESUBSCRIPTIONMANAGERSERVICE_WSDL_LOCATION = PausableSubscriptionManagerService.class.getClassLoader().getResource("brw-2impl.wsdl");
59 }
60 }
61
62 public PausableSubscriptionManagerService(URL wsdlLocation, QName serviceName) {
63 super(wsdlLocation, serviceName);
64 }
65
66 public PausableSubscriptionManagerService() {
67 super(PAUSABLESUBSCRIPTIONMANAGERSERVICE_WSDL_LOCATION, new QName("http://docs.oasis-open.org/wsn/brw-2", "PausableSubscriptionManagerService"));
68 }
69
70
71
72
73
74
75 @WebEndpoint(name = "PausableSubscriptionManagerPort")
76 public PausableSubscriptionManager getPausableSubscriptionManagerPort() {
77 return super.getPort(new QName("http://docs.oasis-open.org/wsn/brw-2", "PausableSubscriptionManagerPort"), PausableSubscriptionManager.class);
78 }
79
80
81
82
83
84
85
86
87 @WebEndpoint(name = "PausableSubscriptionManagerPort")
88 public PausableSubscriptionManager getPausableSubscriptionManagerPort(WebServiceFeature... features) {
89 return super.getPort(new QName("http://docs.oasis-open.org/wsn/brw-2", "PausableSubscriptionManagerPort"), PausableSubscriptionManager.class, features);
90 }
91
92 }