You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by im...@apache.org on 2007/08/11 10:36:53 UTC

svn commit: r564863 - /myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/requestParameterProvider/RequestParameterResponseWrapper.java

Author: imario
Date: Sat Aug 11 01:36:52 2007
New Revision: 564863

URL: http://svn.apache.org/viewvc?view=rev&rev=564863
Log:
ORCHESTRA-1: Using servlet 2.4. Thanks to Dan Tran for the patch!

Modified:
    myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/requestParameterProvider/RequestParameterResponseWrapper.java

Modified: myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/requestParameterProvider/RequestParameterResponseWrapper.java
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/requestParameterProvider/RequestParameterResponseWrapper.java?view=diff&rev=564863&r1=564862&r2=564863
==============================================================================
--- myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/requestParameterProvider/RequestParameterResponseWrapper.java (original)
+++ myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/requestParameterProvider/RequestParameterResponseWrapper.java Sat Aug 11 01:36:52 2007
@@ -168,6 +168,11 @@
 		return this.original.getCharacterEncoding();
 	}
 
+	public String getContentType()
+	{
+		return this.original.getContentType();
+	}
+
 	public ServletOutputStream getOutputStream() throws IOException
 	{
 		return this.original.getOutputStream();
@@ -176,6 +181,11 @@
 	public PrintWriter getWriter() throws IOException
 	{
 		return this.original.getWriter();
+	}
+
+	public void setCharacterEncoding(String encoding)
+	{
+		this.original.setCharacterEncoding(encoding);
 	}
 
 	public void setContentLength(int i)