public ServletOutputStream getOutputStream()

in src/main/java/org/apache/sling/scripting/xproc/cocoon/generator/SlingGeneratorServletResponse.java [53:59]


	public ServletOutputStream getOutputStream() throws IOException {
		if (this.hasWriter) {
			throw new IllegalStateException("getWriter was already called.");
		}
		this.hasOutputStream = true;
		return this.output;
	}