Change the header to SO
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / openecomp / mso / bpmn / common / adapter / vnf / VnfAdapterNotify_Service.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.mso.bpmn.common.adapter.vnf;
22
23 import java.net.URL;
24 import javax.xml.namespace.QName;
25 import javax.xml.ws.Service;
26 import javax.xml.ws.WebEndpoint;
27 import javax.xml.ws.WebServiceClient;
28 import javax.xml.ws.WebServiceException;
29 import javax.xml.ws.WebServiceFeature;
30
31
32 /**
33  * This class was generated by the JAX-WS RI.
34  * JAX-WS RI 2.2.8
35  * Generated source version: 2.2
36  * 
37  */
38 @WebServiceClient(name = "vnfAdapterNotify", targetNamespace = "http://org.openecomp.mso/vnfNotify", wsdlLocation = "/VnfAdapterNotify.wsdl")
39 public class VnfAdapterNotify_Service extends Service
40 {
41
42     private final static URL VNFADAPTERNOTIFY_WSDL_LOCATION;
43     private final static WebServiceException VNFADAPTERNOTIFY_EXCEPTION;
44     private final static QName VNFADAPTERNOTIFY_QNAME = new QName("http://org.openecomp.mso/vnfNotify", "vnfAdapterNotify");
45
46     static {
47         VNFADAPTERNOTIFY_WSDL_LOCATION = org.openecomp.mso.bpmn.common.adapter.vnf.VnfAdapterNotify_Service.class.getResource("/VnfAdapterNotify.wsdl");
48         WebServiceException e = null;
49         if (VNFADAPTERNOTIFY_WSDL_LOCATION == null) {
50             e = new WebServiceException("Cannot find '/VnfAdapterNotify.wsdl' wsdl. Place the resource correctly in the classpath.");
51         }
52         VNFADAPTERNOTIFY_EXCEPTION = e;
53     }
54
55     public VnfAdapterNotify_Service() {
56         super(__getWsdlLocation(), VNFADAPTERNOTIFY_QNAME);
57     }
58
59     public VnfAdapterNotify_Service(WebServiceFeature... features) {
60         super(__getWsdlLocation(), VNFADAPTERNOTIFY_QNAME, features);
61     }
62
63     public VnfAdapterNotify_Service(URL wsdlLocation) {
64         super(wsdlLocation, VNFADAPTERNOTIFY_QNAME);
65     }
66
67     public VnfAdapterNotify_Service(URL wsdlLocation, WebServiceFeature... features) {
68         super(wsdlLocation, VNFADAPTERNOTIFY_QNAME, features);
69     }
70
71     public VnfAdapterNotify_Service(URL wsdlLocation, QName serviceName) {
72         super(wsdlLocation, serviceName);
73     }
74
75     public VnfAdapterNotify_Service(URL wsdlLocation, QName serviceName, WebServiceFeature... features) {
76         super(wsdlLocation, serviceName, features);
77     }
78
79     /**
80      * 
81      * @return
82      *     returns VnfAdapterNotify
83      */
84     @WebEndpoint(name = "MsoVnfAdapterAsyncImplPort")
85     public VnfAdapterNotify getMsoVnfAdapterAsyncImplPort() {
86         return super.getPort(new QName("http://org.openecomp.mso/vnfNotify", "MsoVnfAdapterAsyncImplPort"), VnfAdapterNotify.class);
87     }
88
89     /**
90      * 
91      * @param features
92      *     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.
93      * @return
94      *     returns VnfAdapterNotify
95      */
96     @WebEndpoint(name = "MsoVnfAdapterAsyncImplPort")
97     public VnfAdapterNotify getMsoVnfAdapterAsyncImplPort(WebServiceFeature... features) {
98         return super.getPort(new QName("http://org.openecomp.mso/vnfNotify", "MsoVnfAdapterAsyncImplPort"), VnfAdapterNotify.class, features);
99     }
100
101     private static URL __getWsdlLocation() {
102         if (VNFADAPTERNOTIFY_EXCEPTION!= null) {
103             throw VNFADAPTERNOTIFY_EXCEPTION;
104         }
105         return VNFADAPTERNOTIFY_WSDL_LOCATION;
106     }
107
108 }