521fcfd6774a490a94921bdc26e4c7ca1ac7cda9
[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 policyName;
27     private String description;
28     private String templateVersion;
29     private String version;
30     private String priority;
31     private String riskType;
32     private String riskLevel;
33     private String guard;
34     private Content content;
35
36     public String getService() {
37         return service;
38     }
39
40     public void setService(String service) {
41         this.service = service;
42     }
43
44     public String getPolicyName() {
45         return policyName;
46     }
47
48     public void setPolicyName(String policyName) {
49         this.policyName = policyName;
50     }
51
52     public String getDescription() {
53         return description;
54     }
55
56     public void setDescription(String description) {
57         this.description = description;
58     }
59
60     public String getTemplateVersion() {
61         return templateVersion;
62     }
63
64     public void setTemplateVersion(String templateVersion) {
65         this.templateVersion = templateVersion;
66     }
67
68     public String getVersion() {
69         return version;
70     }
71
72     public void setVersion(String version) {
73         this.version = version;
74     }
75
76     public String getPriority() {
77         return priority;
78     }
79
80     public void setPriority(String priority) {
81         this.priority = priority;
82     }
83
84     public String getRiskType() {
85         return riskType;
86     }
87
88     public void setRiskType(String riskType) {
89         this.riskType = riskType;
90     }
91
92     public String getRiskLevel() {
93         return riskLevel;
94     }
95
96     public void setRiskLevel(String riskLevel) {
97         this.riskLevel = riskLevel;
98     }
99
100     public String getGuard() {
101         return guard;
102     }
103
104     public void setGuard(String guard) {
105         this.guard = guard;
106     }
107
108     public Content getContent() {
109         return content;
110     }
111
112     public void setContent(Content content) {
113         this.content = content;
114     }
115 }