2
0
Эх сурвалжийг харах

Make OnCommittedResponseWrapper public

This is preparing for changes in gh-2953

Issues gh-2953
Rob Winch 9 жил өмнө
parent
commit
1fcc2fcd88

+ 9 - 12
web/src/main/java/org/springframework/security/web/context/SaveContextOnUpdateOrErrorResponseWrapper.java

@@ -17,10 +17,9 @@ package org.springframework.security.web.context;
 
 
 import javax.servlet.http.HttpServletResponse;
 import javax.servlet.http.HttpServletResponse;
 
 
-import org.apache.commons.logging.Log;
-import org.apache.commons.logging.LogFactory;
 import org.springframework.security.core.context.SecurityContext;
 import org.springframework.security.core.context.SecurityContext;
 import org.springframework.security.core.context.SecurityContextHolder;
 import org.springframework.security.core.context.SecurityContextHolder;
+import org.springframework.security.web.util.OnCommittedResponseWrapper;
 
 
 /**
 /**
  * Base class for response wrappers which encapsulate the logic for storing a security
  * Base class for response wrappers which encapsulate the logic for storing a security
@@ -40,10 +39,8 @@ import org.springframework.security.core.context.SecurityContextHolder;
  * @author Rob Winch
  * @author Rob Winch
  * @since 3.0
  * @since 3.0
  */
  */
-public abstract class SaveContextOnUpdateOrErrorResponseWrapper extends
-		OnCommittedResponseWrapper {
-	private final Log logger = LogFactory.getLog(getClass());
-
+public abstract class SaveContextOnUpdateOrErrorResponseWrapper
+		extends OnCommittedResponseWrapper {
 
 
 	private boolean contextSaved = false;
 	private boolean contextSaved = false;
 	/* See SEC-1052 */
 	/* See SEC-1052 */
@@ -86,12 +83,12 @@ public abstract class SaveContextOnUpdateOrErrorResponseWrapper extends
 	@Override
 	@Override
 	protected void onResponseCommitted() {
 	protected void onResponseCommitted() {
 		saveContext(SecurityContextHolder.getContext());
 		saveContext(SecurityContextHolder.getContext());
-		contextSaved = true;
+		this.contextSaved = true;
 	}
 	}
 
 
 	@Override
 	@Override
 	public final String encodeRedirectUrl(String url) {
 	public final String encodeRedirectUrl(String url) {
-		if (disableUrlRewriting) {
+		if (this.disableUrlRewriting) {
 			return url;
 			return url;
 		}
 		}
 		return super.encodeRedirectUrl(url);
 		return super.encodeRedirectUrl(url);
@@ -99,7 +96,7 @@ public abstract class SaveContextOnUpdateOrErrorResponseWrapper extends
 
 
 	@Override
 	@Override
 	public final String encodeRedirectURL(String url) {
 	public final String encodeRedirectURL(String url) {
-		if (disableUrlRewriting) {
+		if (this.disableUrlRewriting) {
 			return url;
 			return url;
 		}
 		}
 		return super.encodeRedirectURL(url);
 		return super.encodeRedirectURL(url);
@@ -107,7 +104,7 @@ public abstract class SaveContextOnUpdateOrErrorResponseWrapper extends
 
 
 	@Override
 	@Override
 	public final String encodeUrl(String url) {
 	public final String encodeUrl(String url) {
-		if (disableUrlRewriting) {
+		if (this.disableUrlRewriting) {
 			return url;
 			return url;
 		}
 		}
 		return super.encodeUrl(url);
 		return super.encodeUrl(url);
@@ -115,7 +112,7 @@ public abstract class SaveContextOnUpdateOrErrorResponseWrapper extends
 
 
 	@Override
 	@Override
 	public final String encodeURL(String url) {
 	public final String encodeURL(String url) {
-		if (disableUrlRewriting) {
+		if (this.disableUrlRewriting) {
 			return url;
 			return url;
 		}
 		}
 		return super.encodeURL(url);
 		return super.encodeURL(url);
@@ -126,6 +123,6 @@ public abstract class SaveContextOnUpdateOrErrorResponseWrapper extends
 	 * wrapper.
 	 * wrapper.
 	 */
 	 */
 	public final boolean isContextSaved() {
 	public final boolean isContextSaved() {
-		return contextSaved;
+		return this.contextSaved;
 	}
 	}
 }
 }

+ 177 - 103
web/src/main/java/org/springframework/security/web/context/OnCommittedResponseWrapper.java → web/src/main/java/org/springframework/security/web/util/OnCommittedResponseWrapper.java

@@ -13,33 +13,31 @@
  * See the License for the specific language governing permissions and
  * See the License for the specific language governing permissions and
  * limitations under the License.
  * limitations under the License.
  */
  */
-package org.springframework.security.web.context;
+package org.springframework.security.web.util;
 
 
-import org.apache.commons.logging.Log;
-import org.apache.commons.logging.LogFactory;
+import java.io.IOException;
+import java.io.PrintWriter;
+import java.util.Locale;
 
 
 import javax.servlet.ServletOutputStream;
 import javax.servlet.ServletOutputStream;
 import javax.servlet.http.HttpServletResponse;
 import javax.servlet.http.HttpServletResponse;
 import javax.servlet.http.HttpServletResponseWrapper;
 import javax.servlet.http.HttpServletResponseWrapper;
-import java.io.IOException;
-import java.io.PrintWriter;
-import java.util.Locale;
 
 
 /**
 /**
- * Base class for response wrappers which encapsulate the logic for handling an event when the
- * {@link javax.servlet.http.HttpServletResponse} is committed.
+ * Base class for response wrappers which encapsulate the logic for handling an event when
+ * the {@link javax.servlet.http.HttpServletResponse} is committed.
  *
  *
  * @since 4.0.2
  * @since 4.0.2
  * @author Rob Winch
  * @author Rob Winch
  */
  */
-abstract class OnCommittedResponseWrapper extends HttpServletResponseWrapper {
-	private final Log logger = LogFactory.getLog(getClass());
+public abstract class OnCommittedResponseWrapper extends HttpServletResponseWrapper {
 
 
 	private boolean disableOnCommitted;
 	private boolean disableOnCommitted;
 
 
 	/**
 	/**
-	 * The Content-Length response header. If this is greater than 0, then once {@link #contentWritten} is larger than
-	 * or equal the response is considered committed.
+	 * The Content-Length response header. If this is greater than 0, then once
+	 * {@link #contentWritten} is larger than or equal the response is considered
+	 * committed.
 	 */
 	 */
 	private long contentLength;
 	private long contentLength;
 
 
@@ -57,7 +55,7 @@ abstract class OnCommittedResponseWrapper extends HttpServletResponseWrapper {
 
 
 	@Override
 	@Override
 	public void addHeader(String name, String value) {
 	public void addHeader(String name, String value) {
-		if("Content-Length".equalsIgnoreCase(name)) {
+		if ("Content-Length".equalsIgnoreCase(name)) {
 			setContentLength(Long.parseLong(value));
 			setContentLength(Long.parseLong(value));
 		}
 		}
 		super.addHeader(name, value);
 		super.addHeader(name, value);
@@ -75,22 +73,33 @@ abstract class OnCommittedResponseWrapper extends HttpServletResponseWrapper {
 	}
 	}
 
 
 	/**
 	/**
-	 * Invoke this method to disable invoking {@link OnCommittedResponseWrapper#onResponseCommitted()} when the {@link javax.servlet.http.HttpServletResponse} is
-	 * committed. This can be useful in the event that Async Web Requests are
-	 * made.
+	 * Invoke this method to disable invoking
+	 * {@link OnCommittedResponseWrapper#onResponseCommitted()} when the
+	 * {@link javax.servlet.http.HttpServletResponse} is committed. This can be useful in
+	 * the event that Async Web Requests are made.
 	 */
 	 */
-	public void disableOnResponseCommitted() {
+	protected void disableOnResponseCommitted() {
 		this.disableOnCommitted = true;
 		this.disableOnCommitted = true;
 	}
 	}
 
 
 	/**
 	/**
-	 * Implement the logic for handling the {@link javax.servlet.http.HttpServletResponse} being committed
+	 * Returns true if {@link #onResponseCommitted()} will be invoked when the response is
+	 * committed, else false.
+	 * @return if {@link #onResponseCommitted()} is enabled
+	 */
+	protected boolean isDisableOnResponseCommitted() {
+		return this.disableOnCommitted;
+	}
+
+	/**
+	 * Implement the logic for handling the {@link javax.servlet.http.HttpServletResponse}
+	 * being committed
 	 */
 	 */
 	protected abstract void onResponseCommitted();
 	protected abstract void onResponseCommitted();
 
 
 	/**
 	/**
-	 * Makes sure {@link OnCommittedResponseWrapper#onResponseCommitted()} is invoked before calling the
-	 * superclass <code>sendError()</code>
+	 * Makes sure {@link OnCommittedResponseWrapper#onResponseCommitted()} is invoked
+	 * before calling the superclass <code>sendError()</code>
 	 */
 	 */
 	@Override
 	@Override
 	public final void sendError(int sc) throws IOException {
 	public final void sendError(int sc) throws IOException {
@@ -99,8 +108,8 @@ abstract class OnCommittedResponseWrapper extends HttpServletResponseWrapper {
 	}
 	}
 
 
 	/**
 	/**
-	 * Makes sure {@link OnCommittedResponseWrapper#onResponseCommitted()} is invoked before calling the
-	 * superclass <code>sendError()</code>
+	 * Makes sure {@link OnCommittedResponseWrapper#onResponseCommitted()} is invoked
+	 * before calling the superclass <code>sendError()</code>
 	 */
 	 */
 	@Override
 	@Override
 	public final void sendError(int sc, String msg) throws IOException {
 	public final void sendError(int sc, String msg) throws IOException {
@@ -109,8 +118,8 @@ abstract class OnCommittedResponseWrapper extends HttpServletResponseWrapper {
 	}
 	}
 
 
 	/**
 	/**
-	 * Makes sure {@link OnCommittedResponseWrapper#onResponseCommitted()} is invoked before calling the
-	 * superclass <code>sendRedirect()</code>
+	 * Makes sure {@link OnCommittedResponseWrapper#onResponseCommitted()} is invoked
+	 * before calling the superclass <code>sendRedirect()</code>
 	 */
 	 */
 	@Override
 	@Override
 	public final void sendRedirect(String location) throws IOException {
 	public final void sendRedirect(String location) throws IOException {
@@ -119,8 +128,9 @@ abstract class OnCommittedResponseWrapper extends HttpServletResponseWrapper {
 	}
 	}
 
 
 	/**
 	/**
-	 * Makes sure {@link OnCommittedResponseWrapper#onResponseCommitted()} is invoked before calling the calling
-	 * <code>getOutputStream().close()</code> or <code>getOutputStream().flush()</code>
+	 * Makes sure {@link OnCommittedResponseWrapper#onResponseCommitted()} is invoked
+	 * before calling the calling <code>getOutputStream().close()</code> or
+	 * <code>getOutputStream().flush()</code>
 	 */
 	 */
 	@Override
 	@Override
 	public ServletOutputStream getOutputStream() throws IOException {
 	public ServletOutputStream getOutputStream() throws IOException {
@@ -128,8 +138,9 @@ abstract class OnCommittedResponseWrapper extends HttpServletResponseWrapper {
 	}
 	}
 
 
 	/**
 	/**
-	 * Makes sure {@link OnCommittedResponseWrapper#onResponseCommitted()} is invoked before calling the
-	 * <code>getWriter().close()</code> or <code>getWriter().flush()</code>
+	 * Makes sure {@link OnCommittedResponseWrapper#onResponseCommitted()} is invoked
+	 * before calling the <code>getWriter().close()</code> or
+	 * <code>getWriter().flush()</code>
 	 */
 	 */
 	@Override
 	@Override
 	public PrintWriter getWriter() throws IOException {
 	public PrintWriter getWriter() throws IOException {
@@ -137,8 +148,8 @@ abstract class OnCommittedResponseWrapper extends HttpServletResponseWrapper {
 	}
 	}
 
 
 	/**
 	/**
-	 * Makes sure {@link OnCommittedResponseWrapper#onResponseCommitted()} is invoked before calling the
-	 * superclass <code>flushBuffer()</code>
+	 * Makes sure {@link OnCommittedResponseWrapper#onResponseCommitted()} is invoked
+	 * before calling the superclass <code>flushBuffer()</code>
 	 */
 	 */
 	@Override
 	@Override
 	public void flushBuffer() throws IOException {
 	public void flushBuffer() throws IOException {
@@ -187,36 +198,38 @@ abstract class OnCommittedResponseWrapper extends HttpServletResponseWrapper {
 	}
 	}
 
 
 	/**
 	/**
-	 * Adds the contentLengthToWrite to the total contentWritten size and checks to see if the response should be
-	 * written.
+	 * Adds the contentLengthToWrite to the total contentWritten size and checks to see if
+	 * the response should be written.
 	 *
 	 *
 	 * @param contentLengthToWrite the size of the content that is about to be written.
 	 * @param contentLengthToWrite the size of the content that is about to be written.
 	 */
 	 */
 	private void checkContentLength(long contentLengthToWrite) {
 	private void checkContentLength(long contentLengthToWrite) {
-		contentWritten += contentLengthToWrite;
-		boolean isBodyFullyWritten = contentLength > 0  && contentWritten >= contentLength;
+		this.contentWritten += contentLengthToWrite;
+		boolean isBodyFullyWritten = this.contentLength > 0
+				&& this.contentWritten >= this.contentLength;
 		int bufferSize = getBufferSize();
 		int bufferSize = getBufferSize();
-		boolean requiresFlush = bufferSize > 0 && contentWritten >= bufferSize;
-		if(isBodyFullyWritten || requiresFlush) {
+		boolean requiresFlush = bufferSize > 0 && this.contentWritten >= bufferSize;
+		if (isBodyFullyWritten || requiresFlush) {
 			doOnResponseCommitted();
 			doOnResponseCommitted();
 		}
 		}
 	}
 	}
 
 
 	/**
 	/**
 	 * Calls <code>onResponseCommmitted()</code> with the current contents as long as
 	 * Calls <code>onResponseCommmitted()</code> with the current contents as long as
-	 * {@link #disableOnResponseCommitted()()} was not invoked.
+	 * {@link #disableOnResponseCommitted()} was not invoked.
 	 */
 	 */
 	private void doOnResponseCommitted() {
 	private void doOnResponseCommitted() {
-		if(!disableOnCommitted) {
+		if (!this.disableOnCommitted) {
 			onResponseCommitted();
 			onResponseCommitted();
 			disableOnResponseCommitted();
 			disableOnResponseCommitted();
 		}
 		}
 	}
 	}
 
 
 	/**
 	/**
-	 * Ensures {@link OnCommittedResponseWrapper#onResponseCommitted()} is invoked before calling the prior to methods that commit the response. We delegate all methods
-	 * to the original {@link java.io.PrintWriter} to ensure that the behavior is as close to the original {@link java.io.PrintWriter}
-	 * as possible. See SEC-2039
+	 * Ensures {@link OnCommittedResponseWrapper#onResponseCommitted()} is invoked before
+	 * calling the prior to methods that commit the response. We delegate all methods to
+	 * the original {@link java.io.PrintWriter} to ensure that the behavior is as close to
+	 * the original {@link java.io.PrintWriter} as possible. See SEC-2039
 	 * @author Rob Winch
 	 * @author Rob Winch
 	 */
 	 */
 	private class SaveContextPrintWriter extends PrintWriter {
 	private class SaveContextPrintWriter extends PrintWriter {
@@ -227,197 +240,235 @@ abstract class OnCommittedResponseWrapper extends HttpServletResponseWrapper {
 			this.delegate = delegate;
 			this.delegate = delegate;
 		}
 		}
 
 
+		@Override
 		public void flush() {
 		public void flush() {
 			doOnResponseCommitted();
 			doOnResponseCommitted();
-			delegate.flush();
+			this.delegate.flush();
 		}
 		}
 
 
+		@Override
 		public void close() {
 		public void close() {
 			doOnResponseCommitted();
 			doOnResponseCommitted();
-			delegate.close();
+			this.delegate.close();
 		}
 		}
 
 
+		@Override
 		public int hashCode() {
 		public int hashCode() {
-			return delegate.hashCode();
+			return this.delegate.hashCode();
 		}
 		}
 
 
+		@Override
 		public boolean equals(Object obj) {
 		public boolean equals(Object obj) {
-			return delegate.equals(obj);
+			return this.delegate.equals(obj);
 		}
 		}
 
 
+		@Override
 		public String toString() {
 		public String toString() {
-			return getClass().getName() + "[delegate=" + delegate.toString() + "]";
+			return getClass().getName() + "[delegate=" + this.delegate.toString() + "]";
 		}
 		}
 
 
+		@Override
 		public boolean checkError() {
 		public boolean checkError() {
-			return delegate.checkError();
+			return this.delegate.checkError();
 		}
 		}
 
 
+		@Override
 		public void write(int c) {
 		public void write(int c) {
 			trackContentLength(c);
 			trackContentLength(c);
-			delegate.write(c);
+			this.delegate.write(c);
 		}
 		}
 
 
+		@Override
 		public void write(char[] buf, int off, int len) {
 		public void write(char[] buf, int off, int len) {
 			checkContentLength(len);
 			checkContentLength(len);
-			delegate.write(buf, off, len);
+			this.delegate.write(buf, off, len);
 		}
 		}
 
 
+		@Override
 		public void write(char[] buf) {
 		public void write(char[] buf) {
 			trackContentLength(buf);
 			trackContentLength(buf);
-			delegate.write(buf);
+			this.delegate.write(buf);
 		}
 		}
 
 
+		@Override
 		public void write(String s, int off, int len) {
 		public void write(String s, int off, int len) {
 			checkContentLength(len);
 			checkContentLength(len);
-			delegate.write(s, off, len);
+			this.delegate.write(s, off, len);
 		}
 		}
 
 
+		@Override
 		public void write(String s) {
 		public void write(String s) {
 			trackContentLength(s);
 			trackContentLength(s);
-			delegate.write(s);
+			this.delegate.write(s);
 		}
 		}
 
 
+		@Override
 		public void print(boolean b) {
 		public void print(boolean b) {
 			trackContentLength(b);
 			trackContentLength(b);
-			delegate.print(b);
+			this.delegate.print(b);
 		}
 		}
 
 
+		@Override
 		public void print(char c) {
 		public void print(char c) {
 			trackContentLength(c);
 			trackContentLength(c);
-			delegate.print(c);
+			this.delegate.print(c);
 		}
 		}
 
 
+		@Override
 		public void print(int i) {
 		public void print(int i) {
 			trackContentLength(i);
 			trackContentLength(i);
-			delegate.print(i);
+			this.delegate.print(i);
 		}
 		}
 
 
+		@Override
 		public void print(long l) {
 		public void print(long l) {
 			trackContentLength(l);
 			trackContentLength(l);
-			delegate.print(l);
+			this.delegate.print(l);
 		}
 		}
 
 
+		@Override
 		public void print(float f) {
 		public void print(float f) {
 			trackContentLength(f);
 			trackContentLength(f);
-			delegate.print(f);
+			this.delegate.print(f);
 		}
 		}
 
 
+		@Override
 		public void print(double d) {
 		public void print(double d) {
 			trackContentLength(d);
 			trackContentLength(d);
-			delegate.print(d);
+			this.delegate.print(d);
 		}
 		}
 
 
+		@Override
 		public void print(char[] s) {
 		public void print(char[] s) {
 			trackContentLength(s);
 			trackContentLength(s);
-			delegate.print(s);
+			this.delegate.print(s);
 		}
 		}
 
 
+		@Override
 		public void print(String s) {
 		public void print(String s) {
 			trackContentLength(s);
 			trackContentLength(s);
-			delegate.print(s);
+			this.delegate.print(s);
 		}
 		}
 
 
+		@Override
 		public void print(Object obj) {
 		public void print(Object obj) {
 			trackContentLength(obj);
 			trackContentLength(obj);
-			delegate.print(obj);
+			this.delegate.print(obj);
 		}
 		}
 
 
+		@Override
 		public void println() {
 		public void println() {
 			trackContentLengthLn();
 			trackContentLengthLn();
-			delegate.println();
+			this.delegate.println();
 		}
 		}
 
 
+		@Override
 		public void println(boolean x) {
 		public void println(boolean x) {
 			trackContentLength(x);
 			trackContentLength(x);
 			trackContentLengthLn();
 			trackContentLengthLn();
-			delegate.println(x);
+			this.delegate.println(x);
 		}
 		}
 
 
+		@Override
 		public void println(char x) {
 		public void println(char x) {
 			trackContentLength(x);
 			trackContentLength(x);
 			trackContentLengthLn();
 			trackContentLengthLn();
-			delegate.println(x);
+			this.delegate.println(x);
 		}
 		}
 
 
+		@Override
 		public void println(int x) {
 		public void println(int x) {
 			trackContentLength(x);
 			trackContentLength(x);
 			trackContentLengthLn();
 			trackContentLengthLn();
-			delegate.println(x);
+			this.delegate.println(x);
 		}
 		}
 
 
+		@Override
 		public void println(long x) {
 		public void println(long x) {
 			trackContentLength(x);
 			trackContentLength(x);
 			trackContentLengthLn();
 			trackContentLengthLn();
-			delegate.println(x);
+			this.delegate.println(x);
 		}
 		}
 
 
+		@Override
 		public void println(float x) {
 		public void println(float x) {
 			trackContentLength(x);
 			trackContentLength(x);
 			trackContentLengthLn();
 			trackContentLengthLn();
-			delegate.println(x);
+			this.delegate.println(x);
 		}
 		}
 
 
+		@Override
 		public void println(double x) {
 		public void println(double x) {
 			trackContentLength(x);
 			trackContentLength(x);
 			trackContentLengthLn();
 			trackContentLengthLn();
-			delegate.println(x);
+			this.delegate.println(x);
 		}
 		}
 
 
+		@Override
 		public void println(char[] x) {
 		public void println(char[] x) {
 			trackContentLength(x);
 			trackContentLength(x);
 			trackContentLengthLn();
 			trackContentLengthLn();
-			delegate.println(x);
+			this.delegate.println(x);
 		}
 		}
 
 
+		@Override
 		public void println(String x) {
 		public void println(String x) {
 			trackContentLength(x);
 			trackContentLength(x);
 			trackContentLengthLn();
 			trackContentLengthLn();
-			delegate.println(x);
+			this.delegate.println(x);
 		}
 		}
 
 
+		@Override
 		public void println(Object x) {
 		public void println(Object x) {
 			trackContentLength(x);
 			trackContentLength(x);
 			trackContentLengthLn();
 			trackContentLengthLn();
-			delegate.println(x);
+			this.delegate.println(x);
 		}
 		}
 
 
+		@Override
 		public PrintWriter printf(String format, Object... args) {
 		public PrintWriter printf(String format, Object... args) {
-			return delegate.printf(format, args);
+			return this.delegate.printf(format, args);
 		}
 		}
 
 
+		@Override
 		public PrintWriter printf(Locale l, String format, Object... args) {
 		public PrintWriter printf(Locale l, String format, Object... args) {
-			return delegate.printf(l, format, args);
+			return this.delegate.printf(l, format, args);
 		}
 		}
 
 
+		@Override
 		public PrintWriter format(String format, Object... args) {
 		public PrintWriter format(String format, Object... args) {
-			return delegate.format(format, args);
+			return this.delegate.format(format, args);
 		}
 		}
 
 
+		@Override
 		public PrintWriter format(Locale l, String format, Object... args) {
 		public PrintWriter format(Locale l, String format, Object... args) {
-			return delegate.format(l, format, args);
+			return this.delegate.format(l, format, args);
 		}
 		}
 
 
+		@Override
 		public PrintWriter append(CharSequence csq) {
 		public PrintWriter append(CharSequence csq) {
 			checkContentLength(csq.length());
 			checkContentLength(csq.length());
-			return delegate.append(csq);
+			return this.delegate.append(csq);
 		}
 		}
 
 
+		@Override
 		public PrintWriter append(CharSequence csq, int start, int end) {
 		public PrintWriter append(CharSequence csq, int start, int end) {
 			checkContentLength(end - start);
 			checkContentLength(end - start);
-			return delegate.append(csq, start, end);
+			return this.delegate.append(csq, start, end);
 		}
 		}
 
 
+		@Override
 		public PrintWriter append(char c) {
 		public PrintWriter append(char c) {
 			trackContentLength(c);
 			trackContentLength(c);
-			return delegate.append(c);
+			return this.delegate.append(c);
 		}
 		}
 	}
 	}
 
 
 	/**
 	/**
-	 * Ensures{@link OnCommittedResponseWrapper#onResponseCommitted()} is invoked before calling methods that commit the response. We delegate all methods
-	 * to the original {@link javax.servlet.ServletOutputStream} to ensure that the behavior is as close to the original {@link javax.servlet.ServletOutputStream}
-	 * as possible. See SEC-2039
+	 * Ensures{@link OnCommittedResponseWrapper#onResponseCommitted()} is invoked before
+	 * calling methods that commit the response. We delegate all methods to the original
+	 * {@link javax.servlet.ServletOutputStream} to ensure that the behavior is as close
+	 * to the original {@link javax.servlet.ServletOutputStream} as possible. See SEC-2039
 	 *
 	 *
 	 * @author Rob Winch
 	 * @author Rob Winch
 	 */
 	 */
@@ -428,123 +479,146 @@ abstract class OnCommittedResponseWrapper extends HttpServletResponseWrapper {
 			this.delegate = delegate;
 			this.delegate = delegate;
 		}
 		}
 
 
+		@Override
 		public void write(int b) throws IOException {
 		public void write(int b) throws IOException {
 			trackContentLength(b);
 			trackContentLength(b);
 			this.delegate.write(b);
 			this.delegate.write(b);
 		}
 		}
 
 
+		@Override
 		public void flush() throws IOException {
 		public void flush() throws IOException {
 			doOnResponseCommitted();
 			doOnResponseCommitted();
-			delegate.flush();
+			this.delegate.flush();
 		}
 		}
 
 
+		@Override
 		public void close() throws IOException {
 		public void close() throws IOException {
 			doOnResponseCommitted();
 			doOnResponseCommitted();
-			delegate.close();
+			this.delegate.close();
 		}
 		}
 
 
+		@Override
 		public int hashCode() {
 		public int hashCode() {
-			return delegate.hashCode();
+			return this.delegate.hashCode();
 		}
 		}
 
 
+		@Override
 		public boolean equals(Object obj) {
 		public boolean equals(Object obj) {
-			return delegate.equals(obj);
+			return this.delegate.equals(obj);
 		}
 		}
 
 
+		@Override
 		public void print(boolean b) throws IOException {
 		public void print(boolean b) throws IOException {
 			trackContentLength(b);
 			trackContentLength(b);
-			delegate.print(b);
+			this.delegate.print(b);
 		}
 		}
 
 
+		@Override
 		public void print(char c) throws IOException {
 		public void print(char c) throws IOException {
 			trackContentLength(c);
 			trackContentLength(c);
-			delegate.print(c);
+			this.delegate.print(c);
 		}
 		}
 
 
+		@Override
 		public void print(double d) throws IOException {
 		public void print(double d) throws IOException {
 			trackContentLength(d);
 			trackContentLength(d);
-			delegate.print(d);
+			this.delegate.print(d);
 		}
 		}
 
 
+		@Override
 		public void print(float f) throws IOException {
 		public void print(float f) throws IOException {
 			trackContentLength(f);
 			trackContentLength(f);
-			delegate.print(f);
+			this.delegate.print(f);
 		}
 		}
 
 
+		@Override
 		public void print(int i) throws IOException {
 		public void print(int i) throws IOException {
 			trackContentLength(i);
 			trackContentLength(i);
-			delegate.print(i);
+			this.delegate.print(i);
 		}
 		}
 
 
+		@Override
 		public void print(long l) throws IOException {
 		public void print(long l) throws IOException {
 			trackContentLength(l);
 			trackContentLength(l);
-			delegate.print(l);
+			this.delegate.print(l);
 		}
 		}
 
 
+		@Override
 		public void print(String s) throws IOException {
 		public void print(String s) throws IOException {
 			trackContentLength(s);
 			trackContentLength(s);
-			delegate.print(s);
+			this.delegate.print(s);
 		}
 		}
 
 
+		@Override
 		public void println() throws IOException {
 		public void println() throws IOException {
 			trackContentLengthLn();
 			trackContentLengthLn();
-			delegate.println();
+			this.delegate.println();
 		}
 		}
 
 
+		@Override
 		public void println(boolean b) throws IOException {
 		public void println(boolean b) throws IOException {
 			trackContentLength(b);
 			trackContentLength(b);
 			trackContentLengthLn();
 			trackContentLengthLn();
-			delegate.println(b);
+			this.delegate.println(b);
 		}
 		}
 
 
+		@Override
 		public void println(char c) throws IOException {
 		public void println(char c) throws IOException {
 			trackContentLength(c);
 			trackContentLength(c);
 			trackContentLengthLn();
 			trackContentLengthLn();
-			delegate.println(c);
+			this.delegate.println(c);
 		}
 		}
 
 
+		@Override
 		public void println(double d) throws IOException {
 		public void println(double d) throws IOException {
 			trackContentLength(d);
 			trackContentLength(d);
 			trackContentLengthLn();
 			trackContentLengthLn();
-			delegate.println(d);
+			this.delegate.println(d);
 		}
 		}
 
 
+		@Override
 		public void println(float f) throws IOException {
 		public void println(float f) throws IOException {
 			trackContentLength(f);
 			trackContentLength(f);
 			trackContentLengthLn();
 			trackContentLengthLn();
-			delegate.println(f);
+			this.delegate.println(f);
 		}
 		}
 
 
+		@Override
 		public void println(int i) throws IOException {
 		public void println(int i) throws IOException {
 			trackContentLength(i);
 			trackContentLength(i);
 			trackContentLengthLn();
 			trackContentLengthLn();
-			delegate.println(i);
+			this.delegate.println(i);
 		}
 		}
 
 
+		@Override
 		public void println(long l) throws IOException {
 		public void println(long l) throws IOException {
 			trackContentLength(l);
 			trackContentLength(l);
 			trackContentLengthLn();
 			trackContentLengthLn();
-			delegate.println(l);
+			this.delegate.println(l);
 		}
 		}
 
 
+		@Override
 		public void println(String s) throws IOException {
 		public void println(String s) throws IOException {
 			trackContentLength(s);
 			trackContentLength(s);
 			trackContentLengthLn();
 			trackContentLengthLn();
-			delegate.println(s);
+			this.delegate.println(s);
 		}
 		}
 
 
+		@Override
 		public void write(byte[] b) throws IOException {
 		public void write(byte[] b) throws IOException {
 			trackContentLength(b);
 			trackContentLength(b);
-			delegate.write(b);
+			this.delegate.write(b);
 		}
 		}
 
 
+		@Override
 		public void write(byte[] b, int off, int len) throws IOException {
 		public void write(byte[] b, int off, int len) throws IOException {
 			checkContentLength(len);
 			checkContentLength(len);
-			delegate.write(b, off, len);
+			this.delegate.write(b, off, len);
 		}
 		}
 
 
+		@Override
 		public String toString() {
 		public String toString() {
-			return getClass().getName() + "[delegate=" + delegate.toString() + "]";
+			return getClass().getName() + "[delegate=" + this.delegate.toString() + "]";
 		}
 		}
 	}
 	}
 }
 }

+ 3 - 1
web/src/test/java/org/springframework/security/web/context/OnCommittedResponseWrapperTests.java → web/src/test/java/org/springframework/security/web/util/OnCommittedResponseWrapperTests.java

@@ -13,7 +13,7 @@
  * See the License for the specific language governing permissions and
  * See the License for the specific language governing permissions and
  * limitations under the License.
  * limitations under the License.
  */
  */
-package org.springframework.security.web.context;
+package org.springframework.security.web.util;
 
 
 import java.io.IOException;
 import java.io.IOException;
 import java.io.PrintWriter;
 import java.io.PrintWriter;
@@ -25,6 +25,8 @@ import org.junit.runner.RunWith;
 import org.mockito.Mock;
 import org.mockito.Mock;
 import org.mockito.runners.MockitoJUnitRunner;
 import org.mockito.runners.MockitoJUnitRunner;
 
 
+import org.springframework.security.web.util.OnCommittedResponseWrapper;
+
 import javax.servlet.ServletOutputStream;
 import javax.servlet.ServletOutputStream;
 import javax.servlet.http.HttpServletResponse;
 import javax.servlet.http.HttpServletResponse;