aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-model/src/main/java/org/openecomp/sdc/be/model/GroupInstanceProperty.java
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-model/src/main/java/org/openecomp/sdc/be/model/GroupInstanceProperty.java')
-rw-r--r--catalog-model/src/main/java/org/openecomp/sdc/be/model/GroupInstanceProperty.java70
1 files changed, 33 insertions, 37 deletions
diff --git a/catalog-model/src/main/java/org/openecomp/sdc/be/model/GroupInstanceProperty.java b/catalog-model/src/main/java/org/openecomp/sdc/be/model/GroupInstanceProperty.java
index 683a2f2428..55b3345a3b 100644
--- a/catalog-model/src/main/java/org/openecomp/sdc/be/model/GroupInstanceProperty.java
+++ b/catalog-model/src/main/java/org/openecomp/sdc/be/model/GroupInstanceProperty.java
@@ -23,41 +23,37 @@ package org.openecomp.sdc.be.model;
import org.openecomp.sdc.be.datatypes.elements.PropertyDataDefinition;
public class GroupInstanceProperty extends GroupProperty {
-
- /**
- *
- */
- private static final long serialVersionUID = 1L;
- private String parentValue;
-
- public GroupInstanceProperty() {
- super();
- }
-
- public GroupInstanceProperty(GroupProperty gp, String parentValue) {
- super(gp);
- this.parentValue = parentValue;
- }
-
- public GroupInstanceProperty(GroupInstanceProperty other) {
- super(other);
- if (other != null) {
- this.parentValue = other.getParentValue();
- }
- }
-
- public GroupInstanceProperty(PropertyDataDefinition propertyDataDefinition) {
- super(propertyDataDefinition);
- parentValue = getDefaultValue();
- }
-
- public String getParentValue() {
- return parentValue;
- }
-
- public void setParentValue(String parentValue) {
- this.parentValue = parentValue;
- }
-
-
+
+ private String parentValue;
+
+ public GroupInstanceProperty() {
+ super();
+ }
+
+ public GroupInstanceProperty(GroupProperty gp, String parentValue) {
+ super(gp);
+ this.parentValue = parentValue;
+ }
+
+ public GroupInstanceProperty(GroupInstanceProperty other) {
+ super(other);
+ if (other != null) {
+ this.parentValue = other.getParentValue();
+ }
+ }
+
+ public GroupInstanceProperty(PropertyDataDefinition propertyDataDefinition) {
+ super(propertyDataDefinition);
+ parentValue = getDefaultValue();
+ }
+
+ public String getParentValue() {
+ return parentValue;
+ }
+
+ public void setParentValue(String parentValue) {
+ this.parentValue = parentValue;
+ }
+
+
}