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
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 import com.google.gson.annotations.SerializedName;
25 import java.util.ArrayList;
26 import java.util.List;
29 * The FlavorProperty includes all the properties of Flavor.
31 * @author Libo Zhu (libo.zhu@intel.com)
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<>();
44 public void setHpaFeature(final String hpaFeature) {
45 this.hpaFeature = hpaFeature;
48 public String getHpaFeature() {
52 public void setMandatory(final String mandatory) {
53 this.mandatory = mandatory;
56 public String getMandatory() {
60 public void setArchitecture(final String architecture) {
61 this.architecture = architecture;
64 public String getArchitecture() {
68 public void setHpaVersion(final String hpaVersion) {
69 this.hpaVersion = hpaVersion;
72 public String getHpaVersion() {
76 public List<Directive> getDirectives() {
80 public List<HpaFeatureAttribute> getHpaFeatureAttributes() {
81 return hpaFeatureAttributes;