}
@Override
public ServletOutputStream getOutputStream() throws IOException {
if (this.servletOutputStream == null) {
this.servletOutputStream = new LazyServletOutputStream(new Callable<ServletOutputStream>() {
@Override
public ServletOutputStream call() throws Exception {
return PortletMimeHttpServletResponseWrapper.super.getOutputStream();
}
}) {