All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.owasp.esapi.waf.internal.InterceptingPrintWriter Maven / Gradle / Ivy

/**
 * OWASP Enterprise Security API (ESAPI)
 * 
 * This file is part of the Open Web Application Security Project (OWASP)
 * Enterprise Security API (ESAPI) project. For details, please see
 * http://www.owasp.org/index.php/ESAPI.
 *
 * Copyright (c) 2009 - The OWASP Foundation
 * 
 * The ESAPI is published by OWASP under the BSD license. You should read and accept the
 * LICENSE before you use, modify, and/or redistribute this software.
 * 
 * @author Arshan Dabirsiaghi Aspect Security
 * @created 2009
 */
package org.owasp.esapi.waf.internal;

import java.io.PrintWriter;
import java.io.Writer;
import java.util.Locale;

/**
 * The PrintWriter needed to buffer outbound data generated by the application
 * being protected by the WAF. Currently no logic is needed here right now due
 * to the WAF things have been architected in the main file, 
 * InterceptingHTTPServletResponse.
 * 
 * @author Arshan Dabirsiaghi
 * @see org.owasp.esapi.waf.internal.InterceptingHTTPServletResponse
 */
public class InterceptingPrintWriter extends PrintWriter {

	public InterceptingPrintWriter(Writer out) {
		super(out);
	}

	public PrintWriter append(char c) {
		return super.append(c);
	}

	public PrintWriter append(CharSequence csq, int start, int end) {
		return super.append(csq, start, end);
	}

	public PrintWriter append(CharSequence csq) {
		return super.append(csq);
	}

	public boolean checkError() {
		return super.checkError();
	}

// Java 1.6 only
//	protected void clearError() {
//		super.clearError();
//	}

	public void close() {
		super.close();
	}

	public void flush() {
		super.flush();
	}

	public PrintWriter format(Locale l, String format, Object... args) {
		return super.format(l, format, args);
	}

	public PrintWriter format(String format, Object... args) {
		return super.format(format, args);
	}

	public void print(boolean b) {
		super.print(b);
	}

	public void print(char c) {
		super.print(c);
	}

	public void print(char[] s) {
		super.print(s);
	}

	public void print(double d) {
		super.print(d);
	}

	public void print(float f) {
		super.print(f);
	}

	public void print(int i) {
		super.print(i);
	}

	public void print(long l) {
		super.print(l);
	}

	public void print(Object obj) {
		super.print(obj);
	}

	public void print(String s) {
		super.print(s);
	}

	public PrintWriter printf(Locale l, String format, Object... args) {
		return super.printf(l, format, args);
	}

	public PrintWriter printf(String format, Object... args) {
		return super.printf(format, args);
	}

	public void println() {
		super.println();
	}

	public void println(boolean x) {
		super.println(x);
	}

	public void println(char x) {
		super.println(x);
	}

	public void println(char[] x) {
		super.println(x);
	}

	public void println(double x) {
		super.println(x);
	}

	public void println(float x) {
		super.println(x);
	}

	public void println(int x) {
		super.println(x);
	}

	public void println(long x) {
		super.println(x);
	}

	public void println(Object x) {
		super.println(x);
	}

	public void println(String x) {
		super.println(x);
	}

	protected void setError() {
		super.setError();
	}

	public void write(char[] buf, int off, int len) {
		super.write(buf, off, len);
	}

	public void write(char[] buf) {
		super.write(buf);
	}

	public void write(int c) {
		super.write(c);
	}

	public void write(String s, int off, int len) {
		super.write(s, off, len);
	}

	public void write(String s) {
		super.write(s);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy