Convert tabs to spaces
[ccsdk/sli/adaptors.git] / aai-service / provider / src / main / java / org / onap / sli / adaptors / aai / data / v1507 / Image.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     "imageId",
38     "imageName",
39     "osType",
40     "osVersion",
41     "application",
42     "applicationVersion",
43     "applicationVendor",
44     "imageLink"
45 })
46 public class Image {
47
48     @JsonProperty("imageId")
49     private String imageId;
50     @JsonProperty("imageName")
51     private String imageName;
52     @JsonProperty("osType")
53     private String osType;
54     @JsonProperty("osVersion")
55     private String osVersion;
56     @JsonProperty("application")
57     private String application;
58     @JsonProperty("applicationVersion")
59     private String applicationVersion;
60     @JsonProperty("applicationVendor")
61     private String applicationVendor;
62     @JsonProperty("imageLink")
63     private String imageLink;
64     @JsonIgnore
65     private Map<String, Object> additionalProperties = new HashMap<String, Object>();
66
67     /**
68      * 
69      * @return
70      *     The imageId
71      */
72     @JsonProperty("imageId")
73     public String getImageId() {
74         return imageId;
75     }
76
77     /**
78      * 
79      * @param imageId
80      *     The imageId
81      */
82     @JsonProperty("imageId")
83     public void setImageId(String imageId) {
84         this.imageId = imageId;
85     }
86
87     /**
88      * 
89      * @return
90      *     The imageName
91      */
92     @JsonProperty("imageName")
93     public String getImageName() {
94         return imageName;
95     }
96
97     /**
98      * 
99      * @param imageName
100      *     The imageName
101      */
102     @JsonProperty("imageName")
103     public void setImageName(String imageName) {
104         this.imageName = imageName;
105     }
106
107     /**
108      * 
109      * @return
110      *     The osType
111      */
112     @JsonProperty("osType")
113     public String getOsType() {
114         return osType;
115     }
116
117     /**
118      * 
119      * @param osType
120      *     The osType
121      */
122     @JsonProperty("osType")
123     public void setOsType(String osType) {
124         this.osType = osType;
125     }
126
127     /**
128      * 
129      * @return
130      *     The osVersion
131      */
132     @JsonProperty("osVersion")
133     public String getOsVersion() {
134         return osVersion;
135     }
136
137     /**
138      * 
139      * @param osVersion
140      *     The osVersion
141      */
142     @JsonProperty("osVersion")
143     public void setOsVersion(String osVersion) {
144         this.osVersion = osVersion;
145     }
146
147     /**
148      * 
149      * @return
150      *     The application
151      */
152     @JsonProperty("application")
153     public String getApplication() {
154         return application;
155     }
156
157     /**
158      * 
159      * @param application
160      *     The application
161      */
162     @JsonProperty("application")
163     public void setApplication(String application) {
164         this.application = application;
165     }
166
167     /**
168      * 
169      * @return
170      *     The applicationVersion
171      */
172     @JsonProperty("applicationVersion")
173     public String getApplicationVersion() {
174         return applicationVersion;
175     }
176
177     /**
178      * 
179      * @param applicationVersion
180      *     The applicationVersion
181      */
182     @JsonProperty("applicationVersion")
183     public void setApplicationVersion(String applicationVersion) {
184         this.applicationVersion = applicationVersion;
185     }
186
187     /**
188      * 
189      * @return
190      *     The applicationVendor
191      */
192     @JsonProperty("applicationVendor")
193     public String getApplicationVendor() {
194         return applicationVendor;
195     }
196
197     /**
198      * 
199      * @param applicationVendor
200      *     The applicationVendor
201      */
202     @JsonProperty("applicationVendor")
203     public void setApplicationVendor(String applicationVendor) {
204         this.applicationVendor = applicationVendor;
205     }
206
207     /**
208      * 
209      * @return
210      *     The imageLink
211      */
212     @JsonProperty("imageLink")
213     public String getImageLink() {
214         return imageLink;
215     }
216
217     /**
218      * 
219      * @param imageLink
220      *     The imageLink
221      */
222     @JsonProperty("imageLink")
223     public void setImageLink(String imageLink) {
224         this.imageLink = imageLink;
225     }
226
227     @JsonAnyGetter
228     public Map<String, Object> getAdditionalProperties() {
229         return this.additionalProperties;
230     }
231
232     @JsonAnySetter
233     public void setAdditionalProperty(String name, Object value) {
234         this.additionalProperties.put(name, value);
235     }
236
237 }