2b8fa826eee4e98e2118fb9bbc55806edfe14cec
[cli.git] / validate / sample-mock-generator / src / main / java / org / onap / cli / http / mock / MockResponse.java
1 /*
2  * Copyright 2017 Huawei Technologies Co., Ltd.
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.cli.http.mock;
18
19 import java.io.IOException;
20
21 import com.fasterxml.jackson.databind.JsonNode;
22 import com.fasterxml.jackson.databind.ObjectMapper;
23
24 public class MockResponse {
25     private int status;
26     private JsonNode json;
27
28     public int getStatus() {
29         return status;
30     }
31
32     public void setStatus(int status) {
33         this.status = status;
34     }
35
36     public JsonNode getJson() {
37         return json;
38     }
39
40     public void setJson(String json) throws IOException {
41         if (!json.isEmpty()) {
42             ObjectMapper objectMapper = new ObjectMapper();
43             this.json = objectMapper.readTree(json);
44         }
45     }
46 }