Sync Integ to Master
[sdc.git] / test-apis-ci / src / main / java / org / openecomp / sdc / ci / tests / datatypes / PropertyObject.java
1 package org.openecomp.sdc.ci.tests.datatypes;
2
3 import java.util.ArrayList;
4 import java.util.List;
5
6 public class PropertyObject {
7
8     private String defaultValue;
9     private String name;
10     private String parentUniqueId;
11     private boolean password;
12     private boolean required;
13     private List<Schema> Schema;
14     private String type;
15     private String uniqueId;
16     private boolean definition;
17     private Object value = null;
18
19
20     public PropertyObject() {
21     }
22
23     public Object getValue() {
24         return value;
25     }
26
27     public void setValue(Object value) {
28         this.value = value;
29     }
30
31     public PropertyObject(String defaultValue, String name, String parentUniqueId, String uniqueId) {
32         this.defaultValue = defaultValue;
33         this.name = name;
34         this.parentUniqueId = parentUniqueId;
35         this.uniqueId = uniqueId;
36         this.password = false;
37         this.required = false;
38         this.type = "String";
39         this.definition = false;
40         this.Schema = new ArrayList<Schema>();
41     }
42
43     public String getDefaultValue() {
44         return defaultValue;
45     }
46
47     public void setDefaultValue(String defaultValue) {
48         this.defaultValue = defaultValue;
49     }
50
51     public String getName() {
52         return name;
53     }
54
55     public void setName(String name) {
56         this.name = name;
57     }
58
59     public String getParentUniqueId() {
60         return parentUniqueId;
61     }
62
63     public void setParentUniqueId(String parentUniqueId) {
64         this.parentUniqueId = parentUniqueId;
65     }
66
67     public String getType() {
68         return type;
69     }
70
71     public void setType(String type) {
72         this.type = type;
73     }
74
75     public String getUniqueId() {
76         return uniqueId;
77     }
78
79     public void setUniqueId(String uniqueId) {
80         this.uniqueId = uniqueId;
81     }
82 }
83
84 class Schema {
85
86     private List<Property> property;
87 }
88
89 class Property {}
90