[SDC-29] Amdocs OnBoard 1707 initial commit.
[sdc.git] / openecomp-be / lib / openecomp-heat-lib / src / main / java / org / openecomp / sdc / heat / datatypes / model / 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 org.openecomp.sdc.heat.datatypes.model;
22
23 import java.util.List;
24 import java.util.Map;
25
26 public class Parameter {
27   String type;
28   String label;
29   String description;
30   Object _default;
31   boolean hidden;
32   List<Map<String, Object>> constraints;
33   boolean immutable;
34
35   public String getType() {
36     return type;
37   }
38
39   public void setType(String type) {
40     this.type = type;
41   }
42
43   public String getLabel() {
44     return label;
45   }
46
47   public void setLabel(String label) {
48     this.label = label;
49   }
50
51   public String getDescription() {
52     return description;
53   }
54
55   public void setDescription(String description) {
56     this.description = description;
57   }
58
59   public Object get_default() {
60     return _default;
61   }
62
63   public void set_default(Object _default) {
64     this._default = _default;
65   }
66
67   public boolean isHidden() {
68     return hidden;
69   }
70
71   public void setHidden(boolean hidden) {
72     this.hidden = hidden;
73   }
74
75   public List<Map<String, Object>> getConstraints() {
76     return constraints;
77   }
78
79   public void setConstraints(List<Map<String, Object>> constraints) {
80     this.constraints = constraints;
81   }
82
83   public boolean isImmutable() {
84     return immutable;
85   }
86
87   public void setImmutable(boolean immutable) {
88     this.immutable = immutable;
89   }
90 }