A underlying http client interface for common rest request.
| 21 | |
| 22 | /** A underlying http client interface for common rest request. */ |
| 23 | public interface RestClient extends AutoCloseable, Cloneable { |
| 24 | |
| 25 | String get(String path, Map<String, Object> params, String authHeader); |
| 26 | |
| 27 | String post(String path, Map<String, Object> params, String authHeader); |
| 28 | } |
no outgoing calls
no test coverage detected