08b01c9f896b713ca95ad0ef6fdccb97c385202b
[policy/drools-applications.git] / controlloop / common / model-impl / so / src / main / java / org / onap / policy / so / SoResponse.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * so
4  * ================================================================================
5  * Copyright (C) 2017-2019 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.so;
22
23 import com.google.gson.annotations.SerializedName;
24
25 import java.io.Serializable;
26
27 public class SoResponse implements Serializable {
28
29     private static final long serialVersionUID = -3283942659786236032L;
30
31     @SerializedName("requestReferences")
32     private SoRequestReferences requestReferences;
33
34     @SerializedName("requestError")
35     private SoRequestError requestError;
36
37     @SerializedName("request")
38     private SoRequest request;
39
40     private int httpResponseCode;
41
42     public SoResponse() {
43         // required by author
44     }
45
46     public int getHttpResponseCode() {
47         return httpResponseCode;
48     }
49
50     public SoRequest getRequest() {
51         return request;
52     }
53
54     public SoRequestError getRequestError() {
55         return requestError;
56     }
57
58     public SoRequestReferences getRequestReferences() {
59         return requestReferences;
60     }
61
62     public void setHttpResponseCode(int httpResponseCode) {
63         this.httpResponseCode = httpResponseCode;
64     }
65
66     public void setRequest(SoRequest request) {
67         this.request = request;
68     }
69
70     public void setRequestError(SoRequestError requestError) {
71         this.requestError = requestError;
72     }
73
74     public void setRequestReferences(SoRequestReferences requestReferences) {
75         this.requestReferences = requestReferences;
76     }
77
78 }