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