Merge "Logging improvements"
[vid.git] / vid-app-common / src / main / java / org / onap / vid / mso / RestObjectWithRequestInfo.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * VID
4  * ================================================================================
5  * Copyright (C) 2017 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.vid.mso;
22
23 import org.springframework.http.HttpMethod;
24
25 public class RestObjectWithRequestInfo<T> {
26
27     private final RestObject<T> restObject;
28     private final String requestedUrl;
29     private final int httpCode;
30     private final String rawData;
31     private final HttpMethod httpMethod;
32
33     public RestObjectWithRequestInfo(HttpMethod httpMethod, String requestedUrl, RestObject<T> restObject, int httpCode, String rawData) {
34         this.restObject = restObject;
35         this.requestedUrl = requestedUrl;
36         this.httpCode = httpCode;
37         this.rawData = rawData;
38         this.httpMethod = httpMethod;
39     }
40
41     public RestObject<T> getRestObject() {
42         return restObject;
43     }
44
45     public String getRequestedUrl() {
46         return requestedUrl;
47     }
48
49     public int getHttpCode() {
50         return httpCode;
51     }
52
53     public String getRawData() {
54         return rawData;
55     }
56
57     public HttpMethod getHttpMethod() {
58         return httpMethod;
59     }
60 }
61