Decodes the request content to a string using the appropriate character set @return Decoded content or an empty string if the request did not include content @throws UnsupportedCharsetException if the parsed character set is invalid
()
| 346 | * @throws UnsupportedCharsetException if the parsed character set is invalid |
| 347 | */ |
| 348 | public String getContent() { |
| 349 | return this.request.getContent().toString(this.getCharset()); |
| 350 | } |
| 351 | |
| 352 | /** |
| 353 | * Method to call after writing the HTTP response to the wire. The default |
no test coverage detected