Support TOSCA functions in Node Filters
[sdc.git] / common-be / src / main / java / org / openecomp / sdc / be / datatypes / elements / InputsValueDataDefinition.java
index b54c960..3300c5d 100644 (file)
@@ -7,9 +7,9 @@
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * You may obtain a copy of the License at
- * 
+ *
  *      http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing, software
  * distributed under the License is distributed on an "AS IS" BASIS,
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -23,42 +23,42 @@ package org.openecomp.sdc.be.datatypes.elements;
 import org.openecomp.sdc.be.datatypes.tosca.ToscaDataDefinition;
 
 public class InputsValueDataDefinition extends ToscaDataDefinition {
-       private String name;
-       private String value;
-       private String uniqueId;
+    private String name;
+    private String value;
+    private String uniqueId;
 
-       public InputsValueDataDefinition(String name, String value) {
-               super();
-               this.name = name;
-               this.value = value;
-       }
+    public InputsValueDataDefinition(String name, String value) {
+        super();
+        this.name = name;
+        this.value = value;
+    }
 
-       public InputsValueDataDefinition() {
-               super();
-       }
+    public InputsValueDataDefinition() {
+        super();
+    }
 
-       public String getUniqueId() {
-               return uniqueId;
-       }
+    public String getUniqueId() {
+        return uniqueId;
+    }
 
-       public void setUniqueId(String uniqueId) {
-               this.uniqueId = uniqueId;
-       }
+    public void setUniqueId(String uniqueId) {
+        this.uniqueId = uniqueId;
+    }
 
-       public String getName() {
-               return name;
-       }
+    public String getName() {
+        return name;
+    }
 
-       public void setName(String name) {
-               this.name = name;
-       }
+    public void setName(String name) {
+        this.name = name;
+    }
 
-       public String getValue() {
-               return value;
-       }
+    public String getValue() {
+        return value;
+    }
 
-       public void setValue(String value) {
-               this.value = value;
-       }
+    public void setValue(String value) {
+        this.value = value;
+    }
 
 }