Improve test coverage
[sdc.git] / catalog-be / src / main / java / org / openecomp / sdc / be / types / ServiceConsumptionData.java
index 51b3653..f7022e3 100644 (file)
  */
 package org.openecomp.sdc.be.types;
 
+import lombok.Getter;
+import lombok.Setter;
+
+@Getter
+@Setter
 public class ServiceConsumptionData {
 
     private String inputId;
@@ -22,35 +27,4 @@ public class ServiceConsumptionData {
     private String value;
     private String type;
 
-    public String getInputId() {
-        return inputId;
-    }
-
-    public void setInputId(String inputId) {
-        this.inputId = inputId;
-    }
-
-    public String getSource() {
-        return source;
-    }
-
-    public void setSource(String source) {
-        this.source = source;
-    }
-
-    public String getValue() {
-        return value;
-    }
-
-    public void setValue(String value) {
-        this.value = value;
-    }
-
-    public String getType() {
-        return type;
-    }
-
-    public void setType(String type) {
-        this.type = type;
-    }
 }