fix a nested node type issue
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / NodeTypeInfo.java
index 5026fff..817060e 100644 (file)
@@ -28,6 +28,7 @@ public class NodeTypeInfo {
     String templateFileName;
     List<String> derivedFrom;
     boolean isNested;
+    boolean isSubstitutionMapping;
     Map<String, Object> mappedToscaTemplate;
 
     public NodeTypeInfo getUnmarkedCopy(){
@@ -64,6 +65,12 @@ public class NodeTypeInfo {
     public void setNested(boolean isNested) {
         this.isNested = isNested;
     }
+    public boolean isSubstitutionMapping() {
+        return isSubstitutionMapping;
+    }
+    public void setSubstitutionMapping(boolean isSubstitutionMapping) {
+        this.isSubstitutionMapping = isSubstitutionMapping;
+    }
 
     public Map<String, Object> getMappedToscaTemplate() {
         return mappedToscaTemplate;