Provide input name when declaring service property as input
[sdc.git] / catalog-model / src / main / java / org / openecomp / sdc / be / model / ComponentInstancePropInput.java
index 048a952..c32838d 100644 (file)
  */
 package org.openecomp.sdc.be.model;
 
+import lombok.Getter;
+import lombok.Setter;
+
+@Getter
+@Setter
 public class ComponentInstancePropInput extends ComponentInstanceProperty {
 
     private String propertiesName;
     private PropertyDefinition input;
+    private String inputName;
 
     public ComponentInstancePropInput() {
         super();
@@ -32,22 +38,6 @@ public class ComponentInstancePropInput extends ComponentInstanceProperty {
         super(p);
     }
 
-    public String getPropertiesName() {
-        return propertiesName;
-    }
-
-    public void setPropertiesName(String propertiesName) {
-        this.propertiesName = propertiesName;
-    }
-
-    public PropertyDefinition getInput() {
-        return input;
-    }
-
-    public void setInput(PropertyDefinition input) {
-        this.input = input;
-    }
-
     public String[] getParsedPropNames() {
         String[] tokens = null;
         if (propertiesName != null && !propertiesName.isEmpty()) {