Class ServletOutputStreamWrapper

java.lang.Object
java.io.OutputStream
jakarta.servlet.ServletOutputStream
org.apache.solr.servlet.ServletOutputStreamWrapper
All Implemented Interfaces:
Closeable, Flushable, AutoCloseable

public class ServletOutputStreamWrapper extends jakarta.servlet.ServletOutputStream
Provides a convenient extension of the ServletOutputStream class that can be subclassed by developers wishing to adapt the behavior of a Stream. One such example may be to override close() to instead be a no-op as in SOLR-8933.

This class implements the Wrapper or Decorator pattern. Methods default to calling through to the wrapped stream.

  • Constructor Details

    • ServletOutputStreamWrapper

      public ServletOutputStreamWrapper(jakarta.servlet.ServletOutputStream stream)
  • Method Details

    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Object
    • flush

      public void flush() throws IOException
      Specified by:
      flush in interface Flushable
      Overrides:
      flush in class OutputStream
      Throws:
      IOException
    • close

      public void close() throws IOException
      Specified by:
      close in interface AutoCloseable
      Specified by:
      close in interface Closeable
      Overrides:
      close in class OutputStream
      Throws:
      IOException
    • isReady

      public boolean isReady()
      Specified by:
      isReady in class jakarta.servlet.ServletOutputStream
    • print

      public void print(boolean arg0) throws IOException
      Overrides:
      print in class jakarta.servlet.ServletOutputStream
      Throws:
      IOException
    • print

      public void print(char c) throws IOException
      Overrides:
      print in class jakarta.servlet.ServletOutputStream
      Throws:
      IOException
    • print

      public void print(double d) throws IOException
      Overrides:
      print in class jakarta.servlet.ServletOutputStream
      Throws:
      IOException
    • print

      public void print(float f) throws IOException
      Overrides:
      print in class jakarta.servlet.ServletOutputStream
      Throws:
      IOException
    • print

      public void print(int i) throws IOException
      Overrides:
      print in class jakarta.servlet.ServletOutputStream
      Throws:
      IOException
    • print

      public void print(long l) throws IOException
      Overrides:
      print in class jakarta.servlet.ServletOutputStream
      Throws:
      IOException
    • print

      public void print(String arg0) throws IOException
      Overrides:
      print in class jakarta.servlet.ServletOutputStream
      Throws:
      IOException
    • println

      public void println() throws IOException
      Overrides:
      println in class jakarta.servlet.ServletOutputStream
      Throws:
      IOException
    • println

      public void println(boolean b) throws IOException
      Overrides:
      println in class jakarta.servlet.ServletOutputStream
      Throws:
      IOException
    • println

      public void println(char c) throws IOException
      Overrides:
      println in class jakarta.servlet.ServletOutputStream
      Throws:
      IOException
    • println

      public void println(double d) throws IOException
      Overrides:
      println in class jakarta.servlet.ServletOutputStream
      Throws:
      IOException
    • println

      public void println(float f) throws IOException
      Overrides:
      println in class jakarta.servlet.ServletOutputStream
      Throws:
      IOException
    • println

      public void println(int i) throws IOException
      Overrides:
      println in class jakarta.servlet.ServletOutputStream
      Throws:
      IOException
    • println

      public void println(long l) throws IOException
      Overrides:
      println in class jakarta.servlet.ServletOutputStream
      Throws:
      IOException
    • println

      public void println(String s) throws IOException
      Overrides:
      println in class jakarta.servlet.ServletOutputStream
      Throws:
      IOException
    • setWriteListener

      public void setWriteListener(jakarta.servlet.WriteListener arg0)
      Specified by:
      setWriteListener in class jakarta.servlet.ServletOutputStream
    • write

      public void write(int b) throws IOException
      Specified by:
      write in class OutputStream
      Throws:
      IOException
    • write

      public void write(byte[] b) throws IOException
      Overrides:
      write in class OutputStream
      Throws:
      IOException
    • write

      public void write(byte[] b, int off, int len) throws IOException
      Overrides:
      write in class OutputStream
      Throws:
      IOException
    • toString

      public String toString()
      Overrides:
      toString in class Object