Remove duplicate parts.
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / http / client / HttpResult.java
1 /*
2  * Copyright 2016-2017, Nokia Corporation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.vfc.nfvo.driver.vnfm.svnfm.http.client;
18
19 import org.apache.http.Header;
20
21 public class HttpResult {
22         private int statusCode;
23         private String statusCause;
24         private Header[] headers;
25         private String content;
26
27         public int getStatusCode() {
28                 return statusCode;
29         }
30
31         public void setStatusCode(int statusCode) {
32                 this.statusCode = statusCode;
33         }
34
35         public String getStatusCause() {
36                 return statusCause;
37         }
38
39         public void setStatusCause(String statusCause) {
40                 this.statusCause = statusCause;
41         }
42
43         public Header[] getHeaders() {
44                 return headers;
45         }
46
47         public void setHeaders(Header[] headers) {
48                 this.headers = headers;
49         }
50
51         public String getContent() {
52                 return content;
53         }
54
55         public void setContent(String content) {
56                 this.content = content;
57         }
58 }