SDC distribution failed bug fix
authorTal Gitelman <tal.gitelman@att.com>
Wed, 23 Jan 2019 16:37:06 +0000 (18:37 +0200)
committerOfir Sonsino <ofir.sonsino@intl.att.com>
Wed, 23 Jan 2019 16:59:06 +0000 (16:59 +0000)
Change-Id: Ia80d03ed2ee9554b315a5db3bc253b4580bdcfb9
Issue-ID: SDC-1955
Signed-off-by: Tal Gitelman <tal.gitelman@att.com>
src/main/java/org/onap/sdc/toscaparser/api/elements/NodeType.java

index a6d7f81..5ba6622 100644 (file)
@@ -111,7 +111,7 @@ public class NodeType extends StatefulEntityType {
                                                                getRelation = _getRelation(key, nodeType);
                                                        } else {
                                                                ThreadLocalsHolder.getCollector().appendValidationIssue(new JToscaValidationIssue("JE11", String.format(
-                                                                               "NodeTypeForCapabilityNotFoundError: Node type for capability type \"%s\" is not found",captype)));
+                                                                               "NodeTypeRequirementForCapabilityUnfulfilled: Node type: \"%s\" with requrement \"%s\" for node type with capability type \"%s\" is not found\\unfulfilled", this.ntype, key, captype)));
                                                        }
                                        if (getRelation != null)  {
                                                relation = getRelation;
@@ -122,7 +122,7 @@ public class NodeType extends StatefulEntityType {
                }
                if(relation == null || nodeType == null){
                                        ThreadLocalsHolder.getCollector().appendValidationIssue(new JToscaValidationIssue("JE11", String.format(
-                                                       "NodeTypeForRelationNotFound: Node type \"%s\" with relationship type \"%s\" is not found",nodeType, relation)));
+                                                       "NodeTypeForRelationUnfulfilled: Node type \"%s\" - relationship type \"%s\" is unfulfilled", this.ntype, relation)));
                                } else {
                                        RelationshipType rtype = new RelationshipType(relation, keyword, customDef);
                                        NodeType relatednode = new NodeType(nodeType, customDef);