blob: daade032b63fa15a3d375d4c27eed7ad34d9f0a9 [file] [log] [blame]
Aharoni, Pavel (pa0916)ca3cb012018-10-22 15:29:57 +03001/*-
2 * ============LICENSE_START=======================================================
3 * OSAM
4 * ================================================================================
5 * Copyright (C) 2018 AT&T
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
19 */
20
21
22
23package org.onap.osam.aai.model.AaiGetNetworkCollectionDetails;
24
25
26import com.fasterxml.jackson.annotation.JsonAnyGetter;
27import com.fasterxml.jackson.annotation.JsonAnySetter;
28import com.fasterxml.jackson.annotation.JsonIgnore;
29import com.fasterxml.jackson.annotation.JsonProperty;
30
31import java.util.HashMap;
32import java.util.List;
33import java.util.Map;
34
35public class AaiGetNetworkCollectionDetailsHelper {
36 @JsonProperty("results")
37 private List<Object> results = null;
38 @JsonIgnore
39 private Map<String, Object> additionalProperties = new HashMap<>();
40
41 @JsonProperty("results")
42 public List<Object> getResults() {
43 return results;
44 }
45
46 @JsonProperty("results")
47 public void setResults(List<Object> results) {
48 this.results = results;
49 }
50
51 @JsonAnyGetter
52 public Map<String, Object> getAdditionalProperties() {
53 return this.additionalProperties;
54 }
55
56 @JsonAnySetter
57 public void setAdditionalProperty(String name, Object value) {
58 this.additionalProperties.put(name, value);
59 }
60}