Initial OpenECOMP MSO commit
[so.git] / adapters / mso-network-adapter / src / main / java / org / openecomp / mso / adapters / network / MsoNetworkAdapterAsync.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * OPENECOMP - MSO
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.adapters.network;
22
23
24 import javax.jws.Oneway;
25 import javax.jws.WebMethod;
26 import javax.jws.WebParam;
27 import javax.jws.WebService;
28 import javax.xml.bind.annotation.XmlElement;
29
30 import org.openecomp.mso.entity.MsoRequest;
31 import org.openecomp.mso.openstack.beans.Subnet;
32 import org.openecomp.mso.openstack.beans.NetworkRollback;
33
34 import java.util.List;
35 /**
36  * This webservice defines the Asynchronous versions of NETWORK adapter calls.
37  * The notification messages for final responses are documented elsewhere
38  * (by the client service WSDL).
39  *
40  */
41 @WebService (name="NetworkAdapterAsync", targetNamespace="http://com.att.mso/networkA")
42 public interface MsoNetworkAdapterAsync
43 {
44         /**
45          * This is the "Create NETWORK" Web Service Endpoint definition.
46          */
47         @WebMethod
48         @Oneway
49         public void createNetworkA (@WebParam(name="cloudSiteId") @XmlElement(required=true) String cloudSiteId,
50                                                         @WebParam(name="tenantId") @XmlElement(required=true) String tenantId,
51                                                         @WebParam(name="networkType") @XmlElement(required=true) String networkType,
52                                                         @WebParam(name="networkName") @XmlElement(required=true) String networkName,
53                                                         @WebParam(name="physicalNetworkName") String physicalNetworkName,
54                                                         @WebParam(name="vlans") List<Integer> vlans,
55                                                         @WebParam(name="failIfExists") Boolean failIfExists,
56                                                         @WebParam(name="backout") Boolean backout,
57                                                         @WebParam(name="subnets") List<Subnet> subnets,
58                                                         @WebParam(name="messageId") @XmlElement(required=true) String messageId,
59                                                         @WebParam(name="request") MsoRequest msoRequest,
60                                                         @WebParam(name="notificationUrl") @XmlElement(required=true) String notificationUrl );
61         
62         @WebMethod
63         @Oneway
64         public void updateNetworkA (@WebParam(name="cloudSiteId") @XmlElement(required=true) String cloudSiteId,
65                                                 @WebParam(name="tenantId") @XmlElement(required=true) String tenantId,
66                                                 @WebParam(name="networkType") @XmlElement(required=true) String networkType,
67                                                 @WebParam(name="networkId") @XmlElement(required=true) String networkId,
68                                                 @WebParam(name="networkName") @XmlElement(required=true) String networkName,
69                                                 @WebParam(name="physicalNetworkName") @XmlElement(required=true) String physicalNetworkName,
70                                                 @WebParam(name="vlans") @XmlElement(required=true) List<Integer> vlans,
71                                                 @WebParam(name="subnets") List<Subnet> subnets,
72                                                 @WebParam(name="messageId") @XmlElement(required=true) String messageId,
73                                                 @WebParam(name="request") MsoRequest msoRequest,
74                                                 @WebParam(name="notificationUrl") @XmlElement(required=true) String notificationUrl );
75
76         @WebMethod
77         @Oneway
78         public void queryNetworkA (@WebParam(name="cloudSiteId") @XmlElement(required=true) String cloudSiteId,
79                                                         @WebParam(name="tenantId") @XmlElement(required=true) String tenantId,
80                                                         @WebParam(name="networkNameOrId") @XmlElement(required=true) String networkNameOrId,
81                                                         @WebParam(name="messageId") @XmlElement(required=true) String messageId,
82                                                         @WebParam(name="request") MsoRequest msoRequest,
83                                                         @WebParam(name="notificationUrl") @XmlElement(required=true) String notificationUrl );
84
85         @WebMethod
86         @Oneway
87         public void deleteNetworkA (@WebParam(name="cloudSiteId") @XmlElement(required=true) String cloudSiteId,
88                                                         @WebParam(name="tenantId") @XmlElement(required=true) String tenantId,
89                                                         @WebParam(name="networkType") @XmlElement(required=true) String networkType,
90                                                         @WebParam(name="networkId") @XmlElement(required=true) String networkId,
91                                                         @WebParam(name="messageId") @XmlElement(required=true) String messageId,
92                                                         @WebParam(name="request") MsoRequest msoRequest,
93                                                         @WebParam(name="notificationUrl") @XmlElement(required=true) String notificationUrl );
94
95         @WebMethod
96         @Oneway
97         public void rollbackNetworkA (@WebParam(name="rollback") @XmlElement(required=true) NetworkRollback rollback,
98                                                 @WebParam(name="messageId") @XmlElement(required=true) String messageId,
99                                                 @WebParam(name="notificationUrl") @XmlElement(required=true) String notificationUrl );
100         
101         @WebMethod
102         public void healthCheckA ();
103 }