Bug fix for userspecified output name in import
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / ComponentInstanceAttribOutput.java
index 42ff192..c59a918 100644 (file)
@@ -37,6 +37,10 @@ public class ComponentInstanceAttribOutput extends ComponentInstanceAttribute {
     public ComponentInstanceAttribOutput(ComponentInstanceAttribute p) {
         super(p);
     }
+    public ComponentInstanceAttribOutput(ComponentInstanceAttribute p,String outputName) {
+        super(p);
+        this.outputName = outputName;
+    }
 
     public String[] getParsedAttribNames() {
         String[] tokens = null;