@return True if the request has content, false if not.
()
| 335 | |
| 336 | /** @return True if the request has content, false if not. */ |
| 337 | public boolean hasContent() { |
| 338 | return this.request.getContent() != null && |
| 339 | this.request.getContent().readable(); |
| 340 | } |
| 341 | |
| 342 | /** |
| 343 | * Decodes the request content to a string using the appropriate character set |
no test coverage detected