summaryrefslogtreecommitdiffstats
path: root/jtosca
diff options
context:
space:
mode:
Diffstat (limited to 'jtosca')
-rw-r--r--jtosca/pom.xml4
-rw-r--r--jtosca/src/main/java/org/openecomp/sdc/toscaparser/api/elements/NodeType.java5
2 files changed, 6 insertions, 3 deletions
diff --git a/jtosca/pom.xml b/jtosca/pom.xml
index ce50fec..3ef6a3c 100644
--- a/jtosca/pom.xml
+++ b/jtosca/pom.xml
@@ -5,11 +5,11 @@
<parent>
<groupId>org.openecomp.sdc.sdc-distribution-client</groupId>
<artifactId>sdc-main-distribution-client</artifactId>
- <version>1.1.9-SNAPSHOT</version>
+ <version>1.1.13-SNAPSHOT</version>
</parent>
<artifactId>jtosca</artifactId>
- <version>0.1.3-SNAPSHOT</version>
+ <version>0.1.6-SNAPSHOT</version>
<dependencies>
diff --git a/jtosca/src/main/java/org/openecomp/sdc/toscaparser/api/elements/NodeType.java b/jtosca/src/main/java/org/openecomp/sdc/toscaparser/api/elements/NodeType.java
index 853b8ac..e7dc464 100644
--- a/jtosca/src/main/java/org/openecomp/sdc/toscaparser/api/elements/NodeType.java
+++ b/jtosca/src/main/java/org/openecomp/sdc/toscaparser/api/elements/NodeType.java
@@ -106,7 +106,10 @@ public class NodeType extends StatefulEntityType {
// the capability type
String captype = (String)req.get("capability");
String value = _getNodeTypeByCap(captype);
- relation = _getRelation(key,value);
+ String getRelation = _getRelation(key,value);
+ if (getRelation != null) {
+ relation = getRelation;
+ }
keyword = key;
nodeType = value;
}