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
 
   9  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  17  * SPDX-License-Identifier: Apache-2.0
 
  18  * ============LICENSE_END=========================================================
 
  21 package org.onap.policy.distribution.reception.decoding.pdpx;
 
  23 public class ConfigBody {
 
  25     private String service;
 
  26     private String description;
 
  27     private String version;
 
  28     private String priority;
 
  29     private String riskType;
 
  30     private String riskLevel;
 
  32     private Content content;
 
  34     public String getService() {
 
  38     public void setService(String service) {
 
  39         this.service = service;
 
  42     public String getDescription() {
 
  46     public void setDescription(String description) {
 
  47         this.description = description;
 
  50     public String getVersion() {
 
  54     public void setVersion(String version) {
 
  55         this.version = version;
 
  58     public String getPriority() {
 
  62     public void setPriority(String priority) {
 
  63         this.priority = priority;
 
  66     public String getRiskType() {
 
  70     public void setRiskType(String riskType) {
 
  71         this.riskType = riskType;
 
  74     public String getRiskLevel() {
 
  78     public void setRiskLevel(String riskLevel) {
 
  79         this.riskLevel = riskLevel;
 
  82     public String getGuard() {
 
  86     public void setGuard(String guard) {
 
  90     public Content getContent() {
 
  94     public void setContent(Content content) {
 
  95         this.content = content;