Second part of onap rename
[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.openecomp.sdnc.config.params.data;
26
27 import java.util.List;
28
29 import com.fasterxml.jackson.annotation.JsonProperty;
30
31 public class Parameter {
32         private String name;
33         private String description;
34         private String type;
35         private boolean required;
36         private String source;
37
38         @JsonProperty("rule-type")
39         private String ruleType;
40
41         @JsonProperty("default")
42         private String defaultValue;
43
44         @JsonProperty("request-keys")
45         private List<RequestKey> requestKeys;
46
47         @JsonProperty("response-keys")
48         private List<ResponseKey> responseKeys;
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 getDescription() {
59                 return description;
60         }
61
62         public void setDescription(String description) {
63                 this.description = description;
64         }
65
66         public String getType() {
67                 return type;
68         }
69
70         public void setType(String type) {
71                 this.type = type;
72         }
73
74         public boolean isRequired() {
75                 return required;
76         }
77
78         public void setRequired(boolean required) {
79                 this.required = required;
80         }
81
82         public String getSource() {
83                 return source;
84         }
85
86         public void setSource(String source) {
87                 this.source = source;
88         }
89
90         public String getRuleType() {
91                 return ruleType;
92         }
93
94         public void setRuleType(String ruleType) {
95                 this.ruleType = ruleType;
96         }
97
98         public String getDefaultValue() {
99                 return defaultValue;
100         }
101
102         public void setDefaultValue(String defaultValue) {
103                 this.defaultValue = defaultValue;
104         }
105
106         public List<RequestKey> getRequestKeys() {
107                 return requestKeys;
108         }
109
110         public void setRequestKeys(List<RequestKey> requestKeys) {
111                 this.requestKeys = requestKeys;
112         }
113
114         public List<ResponseKey> getResponseKeys() {
115                 return responseKeys;
116         }
117
118         public void setResponseKeys(List<ResponseKey> responseKeys) {
119                 this.responseKeys = responseKeys;
120         }
121
122
123
124
125
126 }