Implement Attributes/Outputs BE (part 2)
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / InputDefinition.java
index 2f61e9e..bbb7146 100644 (file)
@@ -20,6 +20,8 @@
 
 package org.openecomp.sdc.be.model;
 
+import lombok.Getter;
+import lombok.Setter;
 import org.openecomp.sdc.be.datatypes.elements.Annotation;
 import org.openecomp.sdc.be.datatypes.elements.PropertyDataDefinition;
 
@@ -27,12 +29,13 @@ import java.util.ArrayList;
 import java.util.Collection;
 import java.util.List;
 
+@Getter
+@Setter
 public class InputDefinition extends PropertyDefinition {
 
     private List<ComponentInstanceInput> inputs;
     private List<ComponentInstanceProperty> properties;
 
-
     public InputDefinition(PropertyDataDefinition p) {
         super(p);
     }
@@ -49,26 +52,8 @@ public class InputDefinition extends PropertyDefinition {
         super(other);
     }
 
-    public List<ComponentInstanceInput> getInputs() {
-        return inputs;
-    }
-
-    public void setInputs(List<ComponentInstanceInput> inputs) {
-        this.inputs = inputs;
-    }
-
-    public List<ComponentInstanceProperty> getProperties() {
-        return properties;
-    }
-
-    public void setProperties(List<ComponentInstanceProperty> properties) {
-        this.properties = properties;
-    }
-
     public void setAnnotationsToInput(Collection<Annotation> annotations){
         this.setAnnotations(new ArrayList<>(annotations));
     }
 
-
-
 }