diff options
-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); |