0453370dc9adf34d5832db7eeb75ea53073e370c
[policy/distribution.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2018 Intel. 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 import com.google.gson.annotations.SerializedName;
24
25 import java.util.ArrayList;
26 import java.util.List;
27
28 /**
29  * The FlavorProperty includes all the properties of Flavor.
30  *
31  * @author Libo Zhu (libo.zhu@intel.com)
32  */
33 class FlavorProperty {
34     @SerializedName(value = "hpa-feature")
35     private String hpaFeature;
36     private String mandatory = "True";
37     private String architecture = "generic";
38     @SerializedName(value = "hpa-version")
39     private String hpaVersion = "v1";
40     private List<Directive> directives = new ArrayList<>();
41     @SerializedName(value = "hpa-feature-attributes")
42     private List<HpaFeatureAttribute> hpaFeatureAttributes = new ArrayList<>();
43
44     public void setHpaFeature(final String hpaFeature) {
45         this.hpaFeature = hpaFeature;
46     }
47
48     public String getHpaFeature() {
49         return hpaFeature;
50     }
51
52     public void setMandatory(final String mandatory) {
53         this.mandatory = mandatory;
54     }
55
56     public String getMandatory() {
57         return mandatory;
58     }
59
60     public void setArchitecture(final String architecture) {
61         this.architecture = architecture;
62     }
63
64     public String getArchitecture() {
65         return architecture;
66     }
67
68     public void setHpaVersion(final String hpaVersion) {
69         this.hpaVersion = hpaVersion;
70     }
71
72     public String getHpaVersion() {
73         return hpaVersion;
74     }
75
76     public List<Directive> getDirectives() {
77         return directives;
78     }
79
80     public List<HpaFeatureAttribute> getHpaFeatureAttributes() {
81         return hpaFeatureAttributes;
82     }
83 }
84