/********************************************************************************** * $URL: https://source.sakaiproject.org/svn/portal/trunk/portal-util/util/src/java/org/sakaiproject/portal/util/BufferedServletResponse.java $ * $Id: BufferedServletResponse.java 105079 2012-02-24 23:08:11Z ottenhoff@longsight.com $ *********************************************************************************** * * Copyright (c) 2005, 2006, 2007, 2008 The Sakai Foundation * * Licensed under the Educational Community License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.opensource.org/licenses/ECL-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * **********************************************************************************/ package org.sakaiproject.portal.util; import java.io.PrintWriter; import java.io.StringWriter; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpServletResponseWrapper; /** * ServletResponse instance used to buffer content. This buffering allows for * the portlets title to be captured prior to rendering and other similar * features. <p/> NOTE: Access the output stream for this response had * undertermined results. It is expected that in most situations an * IllegalArgumentException will be thrown. * * @since Sakai 2.2.4 * @version $Rev: 105079 $ */ public class BufferedServletResponse extends HttpServletResponseWrapper { /** * The writer to which content will be buffered */ private StringWriter buffer = null; /** * The printWriter which will be exposed to the requesting resources. */ private PrintWriter writer = null; /** * The default content type for all portlets. */ private String contentType = "text/html"; /** * Sole Constructor. Initializes the response wrapper and the buffered * writer. * * @param response * the original servlet response. */ public BufferedServletResponse(HttpServletResponse response) { super(response); buffer = new StringWriter(); writer = new PrintWriter(buffer); } @Override public String getContentType() { return contentType; } @Override public PrintWriter getWriter() { return writer; } /** * Retrieve the buffer. * * @return */ public StringWriter getInternalBuffer() { return buffer; } }