Fixed Minor Code Smells issues "Deprecated JsonParser"
[cli.git] / validate / sample-mock-generator / src / main / java / org / onap / cli / http / mock / MockRequest.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 import java.net.URL;
21 import java.util.Map;
22
23 import com.google.gson.JsonParser;
24 import com.google.gson.JsonElement;
25
26 public class MockRequest {
27     private String method;
28     private String uri;
29     private Map<String, String> headers;
30     private JsonElement json;
31     public String getMethod() {
32         return method;
33     }
34
35     public void setMethod(String method) {
36         this.method = method;
37     }
38
39     public String getUri() {
40         return uri;
41     }
42
43     public void setUri(String url) throws IOException {
44         URL urlt;
45         urlt = new URL(url);
46         this.uri = urlt.getPath();
47     }
48
49     public Map<String, String> getHeaders() {
50         return headers;
51     }
52
53     public void setHeaders(Map<String, String> headers) {
54         this.headers = headers;
55     }
56
57     public JsonElement getJson() {
58         return json;
59     }
60
61     public void setJson(String json) throws IOException { //NOSONAR
62         if (!json.isEmpty()) {
63             try {
64                 this.json = JsonParser.parseString(json);
65             } catch (Exception e) {
66                 this.json = JsonParser.parseString("{}");
67             }
68         }
69
70     }
71 }