[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-be / lib / openecomp-core-lib / openecomp-nosqldb-lib / openecomp-nosqldb-core / src / test / java / testobjects / yaml / Parameter.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 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 testobjects.yaml;
22
23 import java.util.Map;
24
25
26 public class Parameter {
27   String name;
28   String label;
29   String description;
30   String paramDefault;
31   boolean hidden;
32   Map<String, InnerP> inner;
33
34   public Map<String, InnerP> getInner() {
35     return inner;
36   }
37
38   public void setInner(Map<String, InnerP> inner) {
39     this.inner = inner;
40   }
41
42   public String getParamDefault() {
43     return paramDefault;
44   }
45
46   public void setParamDefault(String paramDefault) {
47     this.paramDefault = paramDefault;
48   }
49
50   public String getName() {
51     return name;
52   }
53
54   public void setName(String name) {
55     this.name = name;
56   }
57
58   public String getLabel() {
59     return label;
60   }
61
62   public void setLabel(String label) {
63     this.label = label;
64   }
65
66   public String getDescription() {
67     return description;
68   }
69
70   public void setDescription(String description) {
71     this.description = description;
72   }
73
74   public String getDefault() {
75     return paramDefault;
76   }
77
78   public void setDefault(String paramDefault) {
79     this.paramDefault = paramDefault;
80   }
81
82   public boolean isHidden() {
83     return hidden;
84   }
85
86   public void setHidden(boolean hidden) {
87     this.hidden = hidden;
88   }
89 }