Added oparent to sdc main
[sdc.git] / test-apis-ci / src / main / java / org / openecomp / sdc / ci / tests / datatypes / PropertyObject.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.ci.tests.datatypes;
22
23 import java.util.ArrayList;
24 import java.util.List;
25
26 public class PropertyObject {
27
28     private String defaultValue;
29     private String name;
30     private String parentUniqueId;
31     private boolean password;
32     private boolean required;
33     private List<Schema> Schema;
34     private String type;
35     private String uniqueId;
36     private boolean definition;
37     private Object value = null;
38
39
40     public PropertyObject() {
41     }
42
43     public Object getValue() {
44         return value;
45     }
46
47     public void setValue(Object value) {
48         this.value = value;
49     }
50
51     public PropertyObject(String defaultValue, String name, String parentUniqueId, String uniqueId) {
52         this.defaultValue = defaultValue;
53         this.name = name;
54         this.parentUniqueId = parentUniqueId;
55         this.uniqueId = uniqueId;
56         this.password = false;
57         this.required = false;
58         this.type = "String";
59         this.definition = false;
60         this.Schema = new ArrayList<Schema>();
61     }
62
63     public String getDefaultValue() {
64         return defaultValue;
65     }
66
67     public void setDefaultValue(String defaultValue) {
68         this.defaultValue = defaultValue;
69     }
70
71     public String getName() {
72         return name;
73     }
74
75     public void setName(String name) {
76         this.name = name;
77     }
78
79     public String getParentUniqueId() {
80         return parentUniqueId;
81     }
82
83     public void setParentUniqueId(String parentUniqueId) {
84         this.parentUniqueId = parentUniqueId;
85     }
86
87     public String getType() {
88         return type;
89     }
90
91     public void setType(String type) {
92         this.type = type;
93     }
94
95     public String getUniqueId() {
96         return uniqueId;
97     }
98
99     public void setUniqueId(String uniqueId) {
100         this.uniqueId = uniqueId;
101     }
102 }
103
104 class Schema {
105
106     private List<Property> property;
107 }
108
109 class Property {}
110