72d9bd2bacb798c64e69af564121df25de3d5d22
[policy/distribution.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2018 Ericsson. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.distribution.reception.decoding.pdpx;
22
23 public class ConfigBody {
24
25     private String service;
26     private String description;
27     private String version;
28     private String priority;
29     private String riskType;
30     private String riskLevel;
31     private String guard;
32     private Content content;
33
34     public String getService() {
35         return service;
36     }
37
38     public void setService(String service) {
39         this.service = service;
40     }
41
42     public String getDescription() {
43         return description;
44     }
45
46     public void setDescription(String description) {
47         this.description = description;
48     }
49
50     public String getVersion() {
51         return version;
52     }
53
54     public void setVersion(String version) {
55         this.version = version;
56     }
57
58     public String getPriority() {
59         return priority;
60     }
61
62     public void setPriority(String priority) {
63         this.priority = priority;
64     }
65
66     public String getRiskType() {
67         return riskType;
68     }
69
70     public void setRiskType(String riskType) {
71         this.riskType = riskType;
72     }
73
74     public String getRiskLevel() {
75         return riskLevel;
76     }
77
78     public void setRiskLevel(String riskLevel) {
79         this.riskLevel = riskLevel;
80     }
81
82     public String getGuard() {
83         return guard;
84     }
85
86     public void setGuard(String guard) {
87         this.guard = guard;
88     }
89
90     public Content getContent() {
91         return content;
92     }
93
94     public void setContent(Content content) {
95         this.content = content;
96     }
97 }