5ab33b5106990d70f8cd2986fe85a3d313dedeab
[appc.git] / appc-config / appc-config-params / provider / src / main / java / org / onap / sdnc / config / params / data / Parameter.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.sdnc.config.params.data;
26
27 import java.util.List;
28 import com.fasterxml.jackson.annotation.JsonProperty;
29
30 public class Parameter {
31     private String name;
32     private String description;
33     private String type;
34     private boolean required;
35     private String source;
36
37     @JsonProperty("rule-type")
38     private String ruleType;
39
40     @JsonProperty("default")
41     private String defaultValue;
42
43     @JsonProperty("request-keys")
44     private List<RequestKey> requestKeys;
45
46     @JsonProperty("response-keys")
47     private List<ResponseKey> responseKeys;
48
49     public String getName() {
50         return name;
51     }
52
53     public void setName(String name) {
54         this.name = name;
55     }
56
57     public String getDescription() {
58         return description;
59     }
60
61     public void setDescription(String description) {
62         this.description = description;
63     }
64
65     public String getType() {
66         return type;
67     }
68
69     public void setType(String type) {
70         this.type = type;
71     }
72
73     public boolean isRequired() {
74         return required;
75     }
76
77     public void setRequired(boolean required) {
78         this.required = required;
79     }
80
81     public String getSource() {
82         return source;
83     }
84
85     public void setSource(String source) {
86         this.source = source;
87     }
88
89     public String getRuleType() {
90         return ruleType;
91     }
92
93     public void setRuleType(String ruleType) {
94         this.ruleType = ruleType;
95     }
96
97     public String getDefaultValue() {
98         return defaultValue;
99     }
100
101     public void setDefaultValue(String defaultValue) {
102         this.defaultValue = defaultValue;
103     }
104
105     public List<RequestKey> getRequestKeys() {
106         return requestKeys;
107     }
108
109     public void setRequestKeys(List<RequestKey> requestKeys) {
110         this.requestKeys = requestKeys;
111     }
112
113     public List<ResponseKey> getResponseKeys() {
114         return responseKeys;
115     }
116
117     public void setResponseKeys(List<ResponseKey> responseKeys) {
118         this.responseKeys = responseKeys;
119     }
120
121
122
123 }