Method
writeTo
(final OutputStream outstream)
Source from the content-addressed store, hash-verified
| 128 | EntityTemplate body = new EntityTemplate(new ContentProducer() { |
| 129 | |
| 130 | public void writeTo(final OutputStream outstream) throws IOException { |
| 131 | OutputStreamWriter writer = new OutputStreamWriter(outstream, "UTF-8"); |
| 132 | writer.write(output); |
| 133 | writer.flush(); |
| 134 | } |
| 135 | |
| 136 | }); |
| 137 | body.setContentType("text/html; charset=UTF-8"); |
Callers
nothing calls this directly
Tested by
no test coverage detected