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