[MSO-8] Update the maven dependency
[so.git] / adapters / mso-vnf-adapter / src / main / java / org / openecomp / mso / adapters / vnf / MsoVnfAdapter.java
index 95d8ee2..d1646bf 100644 (file)
@@ -7,9 +7,9 @@
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -36,7 +36,7 @@ import org.openecomp.mso.entity.MsoRequest;
 
 import java.util.Map;
 
-@WebService (name="VnfAdapter", targetNamespace="http://com.att.mso/vnf")
+@WebService (name="VnfAdapter", targetNamespace="http://org.openecomp.mso/vnf")
 public interface MsoVnfAdapter
 {
        /**
@@ -58,7 +58,7 @@ public interface MsoVnfAdapter
                                                        @WebParam(name="outputs", mode=Mode.OUT) Holder<Map<String,String>> outputs,
                                                        @WebParam(name="rollback", mode=Mode.OUT) Holder<VnfRollback> rollback )
                throws VnfException, VnfAlreadyExists;
-       
+
        @WebMethod
        public void updateVnf (@WebParam(name="cloudSiteId") @XmlElement(required=true) String cloudSiteId,
                                                        @WebParam(name="tenantId") @XmlElement(required=true) String tenantId,
@@ -72,7 +72,7 @@ public interface MsoVnfAdapter
                                                        @WebParam(name="outputs", mode=Mode.OUT) Holder<Map<String,String>> outputs,
                                                        @WebParam(name="rollback", mode=Mode.OUT) Holder<VnfRollback> rollback )
                throws VnfException;
-       
+
        @WebMethod
        public void queryVnf (@WebParam(name="cloudSiteId") @XmlElement(required=true) String cloudSiteId,
                                                        @WebParam(name="tenantId") @XmlElement(required=true) String tenantId,
@@ -83,19 +83,19 @@ public interface MsoVnfAdapter
                                                        @WebParam(name="status", mode=Mode.OUT) Holder<VnfStatus> status,
                                                        @WebParam(name="outputs", mode=Mode.OUT) Holder<Map<String,String>> outputs )
                throws VnfException;
-       
+
        @WebMethod
        public void deleteVnf (@WebParam(name="cloudSiteId") @XmlElement(required=true) String cloudSiteId,
                                                        @WebParam(name="tenantId") @XmlElement(required=true) String tenantId,
                                                        @WebParam(name="vnfName") @XmlElement(required=true) String vnfName,
                                                        @WebParam(name="request") MsoRequest msoRequest)
                throws VnfException;
-       
-       
+
+
        @WebMethod
        public void rollbackVnf (@WebParam(name="rollback") @XmlElement(required=true) VnfRollback rollback)
                throws VnfException;
-       
+
        @WebMethod
        public void createVfModule (@WebParam(name="cloudSiteId") @XmlElement(required=true) String cloudSiteId,
                                                        @WebParam(name="tenantId") @XmlElement(required=true) String tenantId,
@@ -105,6 +105,7 @@ public interface MsoVnfAdapter
                                                        @WebParam(name="requestType") @XmlElement(required=false) String requestType,
                                                        @WebParam(name="volumeGroupHeatStackId") @XmlElement(required=false) String volumeGroupHeatStackId,
                                                        @WebParam(name="baseVfHeatStackId") @XmlElement(required=false) String baseVfHeatStackId,
+                                                       @WebParam(name = "modelCustomizationUuid") @XmlElement(required = false) String modelCustomizationUuid,
                                                        @WebParam(name="inputs") Map<String,String> inputs,
                                                        @WebParam(name="failIfExists") Boolean failIfExists,
                                                        @WebParam(name="backout") Boolean backout,
@@ -113,14 +114,15 @@ public interface MsoVnfAdapter
                                                        @WebParam(name="outputs", mode=Mode.OUT) Holder<Map<String,String>> outputs,
                                                        @WebParam(name="rollback", mode=Mode.OUT) Holder<VnfRollback> rollback )
                throws VnfException, VnfAlreadyExists;
-       
+
        @WebMethod
        public void deleteVfModule (@WebParam(name="cloudSiteId") @XmlElement(required=true) String cloudSiteId,
                                                        @WebParam(name="tenantId") @XmlElement(required=true) String tenantId,
                                                        @WebParam(name="vfName") @XmlElement(required=true) String vfName,
-                                                       @WebParam(name="request") MsoRequest msoRequest)
+                                                       @WebParam(name="request") MsoRequest msoRequest,
+                                                       @WebParam(name = "vfModuleOutputs", mode = Mode.OUT) Holder<Map<String, String>> vfModuleOutputs)
                throws VnfException;
-       
+
        @WebMethod
        public void updateVfModule (@WebParam(name="cloudSiteId") @XmlElement(required=true) String cloudSiteId,
                                                        @WebParam(name="tenantId") @XmlElement(required=true) String tenantId,
@@ -131,12 +133,13 @@ public interface MsoVnfAdapter
                                                        @WebParam(name="volumeGroupHeatStackId") @XmlElement(required=false) String volumeGroupHeatStackId,
                                                        @WebParam(name="baseVfHeatStackId") @XmlElement(required=false) String baseVfHeatStackId,
                                                        @WebParam(name="vfModuleStackId") @XmlElement(required=false) String vfModuleStackId,
+                                                       @WebParam(name = "modelCustomizationUuid") @XmlElement(required = false) String modelCustomizationUuid,
                                                        @WebParam(name="inputs") Map<String,String> inputs,
                                                        @WebParam(name="request") MsoRequest msoRequest,
                                                        @WebParam(name="outputs", mode=Mode.OUT) Holder<Map<String,String>> outputs,
                                                        @WebParam(name="rollback", mode=Mode.OUT) Holder<VnfRollback> rollback )
                throws VnfException;
-       
+
        @WebMethod
        public void healthCheck ();
 }