Fixed Sonar Bugs & Vulnerabilities
[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.google.gson.JsonElement;
22 import com.google.gson.JsonParser;
23
24 public class MockResponse {
25     private int status;
26     private JsonElement json;
27     public int getStatus() {
28         return status;
29     }
30
31     public void setStatus(int status) {
32         this.status = status;
33     }
34
35     public JsonElement getJson() {
36         return json;
37     }
38
39     public void setJson(String json) throws IOException { //NOSONAR
40         if (json != null && !json.isEmpty()) {
41             try {
42                 JsonParser parser = new JsonParser();
43                 this.json = parser.parse(json);
44             } catch (Exception e) {
45                 this.json = new JsonParser().parse("{}");
46             }
47         }
48     }
49 }