summaryrefslogtreecommitdiffstats
path: root/catalog-model/src/main/java/org/openecomp/sdc/be/model/ComponentInstanceInput.java
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-model/src/main/java/org/openecomp/sdc/be/model/ComponentInstanceInput.java')
-rw-r--r--catalog-model/src/main/java/org/openecomp/sdc/be/model/ComponentInstanceInput.java14
1 files changed, 2 insertions, 12 deletions
diff --git a/catalog-model/src/main/java/org/openecomp/sdc/be/model/ComponentInstanceInput.java b/catalog-model/src/main/java/org/openecomp/sdc/be/model/ComponentInstanceInput.java
index 9347f326d1..abcac352cc 100644
--- a/catalog-model/src/main/java/org/openecomp/sdc/be/model/ComponentInstanceInput.java
+++ b/catalog-model/src/main/java/org/openecomp/sdc/be/model/ComponentInstanceInput.java
@@ -38,8 +38,6 @@ public class ComponentInstanceInput extends InputDefinition implements IComponen
*/
private String valueUniqueUid;
- private String inputId;
-
private List<String> path = null;
private List<PropertyRule> rules = null;
@@ -53,7 +51,7 @@ public class ComponentInstanceInput extends InputDefinition implements IComponen
public ComponentInstanceInput(PropertyDataDefinition curPropertyDef, String inputId, String value,
String valueUniqueUid) {
super(curPropertyDef);
- this.inputId = inputId;
+ setInputId(inputId);
setValue(value);
this.valueUniqueUid = valueUniqueUid;
}
@@ -68,7 +66,7 @@ public class ComponentInstanceInput extends InputDefinition implements IComponen
public ComponentInstanceInput(PropertyDataDefinition propertyDefinition) {
super(propertyDefinition);
if(propertyDefinition.getGetInputValues() != null && !propertyDefinition.getGetInputValues().isEmpty()){
- this.inputId = propertyDefinition.getGetInputValues().get(0).getInputId();
+ setInputId(propertyDefinition.getGetInputValues().get(0).getInputId());
}
}
@@ -88,14 +86,6 @@ public class ComponentInstanceInput extends InputDefinition implements IComponen
this.componentInstanceId = componentInstanceId;
}
- public String getInputId() {
- return inputId;
- }
-
- public void setInputId(String inputId) {
- this.inputId = inputId;
- }
-
public String getValueUniqueUid() {
return valueUniqueUid;
}