Convert tabs to spaces
[ccsdk/sli/adaptors.git] / aai-service / provider / src / main / java / org / onap / sli / adaptors / aai / data / v1507 / Flavor.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : SDN-C
4  * ================================================================================
5  * Copyright (C) 2017 ONAP Intellectual Property. All rights
6  *                                              reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.ccsdk.sli.adaptors.aai.data.v1507;
23
24 import java.util.HashMap;
25 import java.util.Map;
26 import javax.annotation.Generated;
27 import com.fasterxml.jackson.annotation.JsonAnyGetter;
28 import com.fasterxml.jackson.annotation.JsonAnySetter;
29 import com.fasterxml.jackson.annotation.JsonIgnore;
30 import com.fasterxml.jackson.annotation.JsonInclude;
31 import com.fasterxml.jackson.annotation.JsonProperty;
32 import com.fasterxml.jackson.annotation.JsonPropertyOrder;
33
34 @JsonInclude(JsonInclude.Include.NON_NULL)
35 @Generated("org.jsonschema2pojo")
36 @JsonPropertyOrder({
37     "flavorId",
38     "flavorName",
39     "flavorLink"
40 })
41 public class Flavor {
42
43     @JsonProperty("flavorId")
44     private String flavorId;
45     @JsonProperty("flavorName")
46     private String flavorName;
47     @JsonProperty("flavorLink")
48     private String flavorLink;
49     @JsonIgnore
50     private Map<String, Object> additionalProperties = new HashMap<String, Object>();
51
52     /**
53      * 
54      * @return
55      *     The flavorId
56      */
57     @JsonProperty("flavorId")
58     public String getFlavorId() {
59         return flavorId;
60     }
61
62     /**
63      * 
64      * @param flavorId
65      *     The flavorId
66      */
67     @JsonProperty("flavorId")
68     public void setFlavorId(String flavorId) {
69         this.flavorId = flavorId;
70     }
71
72     /**
73      * 
74      * @return
75      *     The flavorName
76      */
77     @JsonProperty("flavorName")
78     public String getFlavorName() {
79         return flavorName;
80     }
81
82     /**
83      * 
84      * @param flavorName
85      *     The flavorName
86      */
87     @JsonProperty("flavorName")
88     public void setFlavorName(String flavorName) {
89         this.flavorName = flavorName;
90     }
91
92     /**
93      * 
94      * @return
95      *     The flavorLink
96      */
97     @JsonProperty("flavorLink")
98     public String getFlavorLink() {
99         return flavorLink;
100     }
101
102     /**
103      * 
104      * @param flavorLink
105      *     The flavorLink
106      */
107     @JsonProperty("flavorLink")
108     public void setFlavorLink(String flavorLink) {
109         this.flavorLink = flavorLink;
110     }
111
112     @JsonAnyGetter
113     public Map<String, Object> getAdditionalProperties() {
114         return this.additionalProperties;
115     }
116
117     @JsonAnySetter
118     public void setAdditionalProperty(String name, Object value) {
119         this.additionalProperties.put(name, value);
120     }
121
122 }