Support TOSCA functions in Node Filters
[sdc.git] / common-be / src / main / java / org / openecomp / sdc / be / datatypes / elements / GetOutputValueDataDefinition.java
index 8bb7f7e..a295489 100644 (file)
@@ -17,7 +17,6 @@
  * limitations under the License.
  * ============LICENSE_END=========================================================
  */
-
 package org.openecomp.sdc.be.datatypes.elements;
 
 import java.util.Map;
@@ -34,11 +33,11 @@ import org.openecomp.sdc.be.datatypes.tosca.ToscaDataDefinition;
 public class GetOutputValueDataDefinition extends ToscaDataDefinition {
 
     private String attribName;
-    private String inputName;
-    private String inputId;
+    private String outputName;
+    private String outputId;
     private Integer indexValue;
     private GetOutputValueDataDefinition getOutputIndex;
-    private boolean isList = false;
+    private boolean isList;
 
     public GetOutputValueDataDefinition() {
         super();
@@ -50,11 +49,10 @@ public class GetOutputValueDataDefinition extends ToscaDataDefinition {
 
     public GetOutputValueDataDefinition(GetOutputValueDataDefinition p) {
         this.setAttribName(p.getAttribName());
-        this.setInputName(p.getInputName());
-        this.setInputId(p.getInputId());
+        this.setOutputName(p.getOutputName());
+        this.setOutputId(p.getOutputId());
         this.setIndexValue(p.getIndexValue());
         this.setGetOutputIndex(p.getGetOutputIndex());
         this.setList(p.isList());
     }
-
 }