Executes the specified DELETE request. @param status status code to check @param path path of request @param params query parameters (keys and values) @return response code @throws IOException I/O exception
(final int status, final String path, final Object... params)
| 107 | * @throws IOException I/O exception |
| 108 | */ |
| 109 | protected static String delete(final int status, final String path, final Object... params) |
| 110 | throws IOException { |
| 111 | return send(status, DELETE.name(), null, null, path, params); |
| 112 | } |
| 113 | |
| 114 | /** |
| 115 | * Executes the specified HEAD request and returns the result. |