diff options
author | 2019-01-23 18:37:06 +0200 | |
---|---|---|
committer | 2019-01-23 16:59:06 +0000 | |
commit | 7aa89e21b6c5ec0206071ec6fc1e671721426aec (patch) | |
tree | ca18c8dbe42518c1b1730cc9aa120c6eeb469030 | |
parent | 1003aeb5392947fec84ee70301e649f0e13c57b4 (diff) |
SDC distribution failed bug fix
Change-Id: Ia80d03ed2ee9554b315a5db3bc253b4580bdcfb9
Issue-ID: SDC-1955
Signed-off-by: Tal Gitelman <tal.gitelman@att.com>
-rw-r--r-- | src/main/java/org/onap/sdc/toscaparser/api/elements/NodeType.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/org/onap/sdc/toscaparser/api/elements/NodeType.java b/src/main/java/org/onap/sdc/toscaparser/api/elements/NodeType.java index a6d7f81..5ba6622 100644 --- a/src/main/java/org/onap/sdc/toscaparser/api/elements/NodeType.java +++ b/src/main/java/org/onap/sdc/toscaparser/api/elements/NodeType.java @@ -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); |