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.hpa;
 
  23 import com.google.gson.annotations.SerializedName;
 
  24 import java.util.ArrayList;
 
  25 import java.util.List;
 
  28  * The FlavorProperty includes all the properties of Flavor.
 
  30  * @author Libo Zhu (libo.zhu@intel.com)
 
  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<>();
 
  43     public void setHpaFeature(final String hpaFeature) {
 
  44         this.hpaFeature = hpaFeature;
 
  47     public String getHpaFeature() {
 
  51     public void setMandatory(final String mandatory) {
 
  52         this.mandatory = mandatory;
 
  55     public String getMandatory() {
 
  59     public void setArchitecture(final String architecture) {
 
  60         this.architecture = architecture;
 
  63     public String getArchitecture() {
 
  67     public void setHpaVersion(final String hpaVersion) {
 
  68         this.hpaVersion = hpaVersion;
 
  71     public String getHpaVersion() {
 
  75     public List<Directive> getDirectives() {
 
  79     public List<HpaFeatureAttribute> getHpaFeatureAttributes() {
 
  80         return hpaFeatureAttributes;