36eb0c2991c1d143d5269427ab9461db5bf75f0d
[policy/drools-applications.git] / controlloop / common / model-impl / aai / src / main / java / org / onap / policy / aai / AaiNqResponse.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 import java.util.LinkedList;
27 import java.util.List;
28
29 public class AaiNqResponse implements Serializable {
30     private static final long serialVersionUID = 8411407444051746101L;
31
32     @SerializedName("inventory-response-item")
33     private List<AaiNqInventoryResponseItem> inventoryResponseItems = new LinkedList<>();
34
35     @SerializedName("requestError")
36     private AaiNqRequestError requestError;
37
38     public List<AaiNqInventoryResponseItem> getInventoryResponseItems() {
39         return inventoryResponseItems;
40     }
41
42     public AaiNqRequestError getRequestError() {
43         return requestError;
44     }
45
46     public void setRequestError(AaiNqRequestError requestError) {
47         this.requestError = requestError;
48     }
49
50     public void setInventoryResponseItems(List<AaiNqInventoryResponseItem> inventoryResponseItems) {
51         this.inventoryResponseItems = inventoryResponseItems;
52     }
53 }