(String url, JsonObject jsonObject)
| 45 | private static CloseableHttpResponse httpResponse = null; |
| 46 | |
| 47 | public static JsonObject doPost(String url, JsonObject jsonObject) { |
| 48 | return doPost(url, jsonObject.toString()); |
| 49 | } |
| 50 | |
| 51 | public static JsonObject doPost(String url, String requestBody) { |
| 52 | return doPost(url, requestBody, null); |
no test coverage detected