Return the input stream associated with this request, creating it if necessary. @return the input stream
()
| 746 | * @return the input stream |
| 747 | */ |
| 748 | public InputStream getStream() { |
| 749 | if (inputStream == null) { |
| 750 | inputStream = new CoyoteInputStream(inputBuffer); |
| 751 | } |
| 752 | return inputStream; |
| 753 | } |
| 754 | |
| 755 | /** |
| 756 | * URI byte to char converter. |
no outgoing calls
no test coverage detected