()
| 458 | } |
| 459 | |
| 460 | public boolean isGzipEncoded() { |
| 461 | return getOriginalHeader().getValue("Content-Encoding").orElse("").equalsIgnoreCase("gzip"); |
| 462 | } |
| 463 | |
| 464 | public void encodeBodyByGzip() throws Exception { |
| 465 | body = gzip(body); |
nothing calls this directly
no test coverage detected