Merge "Add debugging of REST call"
[policy/drools-applications.git] / controlloop / common / model-impl / aai / src / main / java / org / onap / policy / aai / AaiNqInventoryResponseItem.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * aai
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
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 package org.onap.policy.aai;
22
23 import com.google.gson.annotations.SerializedName;
24
25 import java.io.Serializable;
26
27 public class AaiNqInventoryResponseItem implements Serializable {
28
29     private static final long serialVersionUID = 7142072567154675183L;
30
31     @SerializedName("model-name")
32     private String modelName;
33
34     @SerializedName("vf-module")
35     private AaiNqVfModule vfModule;
36
37     @SerializedName("service-instance")
38     private AaiNqServiceInstance serviceInstance;
39
40     @SerializedName("vserver")
41     private AaiNqVServer vserver;
42
43     @SerializedName("tenant")
44     private AaiNqTenant tenant;
45
46     @SerializedName("cloud-region")
47     private AaiNqCloudRegion cloudRegion;
48
49     @SerializedName("generic-vnf")
50     private AaiNqGenericVnf genericVnf;
51
52     @SerializedName("extra-properties")
53     private AaiNqExtraProperties extraProperties;
54
55     @SerializedName("inventory-response-items")
56     private AaiNqInventoryResponseItems items;
57
58     public String getModelName() {
59         return modelName;
60     }
61
62     public AaiNqVfModule getVfModule() {
63         return vfModule;
64     }
65
66     public AaiNqServiceInstance getServiceInstance() {
67         return serviceInstance;
68     }
69
70     public AaiNqVServer getVserver() {
71         return vserver;
72     }
73
74     public AaiNqTenant getTenant() {
75         return tenant;
76     }
77
78     public AaiNqCloudRegion getCloudRegion() {
79         return cloudRegion;
80     }
81
82     public AaiNqGenericVnf getGenericVnf() {
83         return genericVnf;
84     }
85
86     public AaiNqExtraProperties getExtraProperties() {
87         return extraProperties;
88     }
89
90     public AaiNqInventoryResponseItems getItems() {
91         return items;
92     }
93
94     public void setModelName(String modelName) {
95         this.modelName = modelName;
96     }
97
98     public void setVfModule(AaiNqVfModule vfModule) {
99         this.vfModule = vfModule;
100     }
101
102     public void setServiceInstance(AaiNqServiceInstance serviceInstance) {
103         this.serviceInstance = serviceInstance;
104     }
105
106     public void setVserver(AaiNqVServer vserver) {
107         this.vserver = vserver;
108     }
109
110     public void setTenant(AaiNqTenant tenant) {
111         this.tenant = tenant;
112     }
113
114     public void setCloudRegion(AaiNqCloudRegion cloudRegion) {
115         this.cloudRegion = cloudRegion;
116     }
117
118     public void setGenericVnf(AaiNqGenericVnf genericVnf) {
119         this.genericVnf = genericVnf;
120     }
121
122     public void setExtraProperties(AaiNqExtraProperties extraProperties) {
123         this.extraProperties = extraProperties;
124     }
125
126     public void setItems(AaiNqInventoryResponseItems items) {
127         this.items = items;
128     }
129 }