[MSO-8] Update the maven dependency
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / openecomp / mso / bpmn / common / adapter / vnf / UpdateVnfNotification.java
@@ -18,7 +18,7 @@
  * ============LICENSE_END=========================================================
  */
 
-package com.att.domain2.workflow.vnf.async.adapter.callback.wsdl.v1;
+package org.openecomp.mso.bpmn.common.adapter.vnf;
 
 import java.util.ArrayList;
 import java.util.List;
@@ -41,7 +41,7 @@ import javax.xml.bind.annotation.XmlType;
  *       <sequence>
  *         <element name="messageId" type="{http://www.w3.org/2001/XMLSchema}string"/>
  *         <element name="completed" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
- *         <element name="exception" type="{http://com.att.mso/vnfNotify}msoExceptionCategory" minOccurs="0"/>
+ *         <element name="exception" type="{http://org.openecomp.mso/vnfNotify}msoExceptionCategory" minOccurs="0"/>
  *         <element name="errorMessage" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
  *         <element name="outputs" minOccurs="0">
  *           <complexType>
@@ -65,7 +65,7 @@ import javax.xml.bind.annotation.XmlType;
  *             </complexContent>
  *           </complexType>
  *         </element>
- *         <element name="rollback" type="{http://com.att.mso/vnfNotify}vnfRollback" minOccurs="0"/>
+ *         <element name="rollback" type="{http://org.openecomp.mso/vnfNotify}vnfRollback" minOccurs="0"/>
  *       </sequence>
  *     </restriction>
  *   </complexContent>
@@ -390,14 +390,14 @@ public class UpdateVnfNotification {
     public String toString(){
        String updateVnfNotification = "";
        if (exception==null) {
-               updateVnfNotification = "<ns2:updateVnfNotification xmlns:ns2=\"http://com.att.mso/vnfNotify\"" + '\n' +
+               updateVnfNotification = "<ns2:updateVnfNotification xmlns:ns2=\"http://org.openecomp.mso/vnfNotify\"" + '\n' +
                                       "  xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">" + '\n' +
                                       "   <messageId>"+messageId+"</messageId>" + '\n' +
                                       "   <completed>"+completed+"</completed>" + '\n' +
                                       "   <rollback>"+rollback+"</rollback>" + '\n' +
                                       "</ns2:updateVnfNotification>";
        } else {
-               updateVnfNotification = "<ns2:updateVnfNotification xmlns:ns2=\"http://com.att.mso/vnfNotify\"" + '\n' +
+               updateVnfNotification = "<ns2:updateVnfNotification xmlns:ns2=\"http://org.openecomp.mso/vnfNotify\"" + '\n' +
                                       "  xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">" + '\n' +
                                       "   <messageId>"+messageId+"</messageId>" + '\n' +
                                       "   <completed>"+completed+"</completed>" + '\n' +