diff options
-rw-r--r-- | bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/bpmn/common/adapter/vnf/CreateVnfNotification.java | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/bpmn/common/adapter/vnf/CreateVnfNotification.java b/bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/bpmn/common/adapter/vnf/CreateVnfNotification.java index 503f9f1b9f..1b5c080045 100644 --- a/bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/bpmn/common/adapter/vnf/CreateVnfNotification.java +++ b/bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/bpmn/common/adapter/vnf/CreateVnfNotification.java @@ -325,6 +325,7 @@ public class CreateVnfNotification { } // Not a generated method + @Override public String toString() { StringBuilder out = new StringBuilder(); out.append("<outputs>\n"); @@ -418,23 +419,25 @@ public class CreateVnfNotification { } // Not a generated method + @Override public String toString() { - String entry = ""; - entry = + String entrystr; + entrystr = "<entry>"+ '\n' + " <key>"+key+"</key>" + '\n' + " <value>"+value+"</value>" + '\n' + "</entry>"; - return entry; + return entrystr; } } } - // Not a generated method + // Not a generated method + @Override public String toString() { - String createVnfNotification = ""; + String createVnfNotification; if (exception==null) { createVnfNotification = "<ns2:createVnfNotification xmlns:ns2=\"http://org.openecomp.mso/vnfNotify\"" + '\n' + " xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">" + '\n' + |