org.spiffyui.server.filter
Class FilterServletOutputStream

java.lang.Object
  extended by ServletOutputStream
      extended by org.spiffyui.server.filter.FilterServletOutputStream

public class FilterServletOutputStream
extends ServletOutputStream

Specialized ServletOutputStream, exposing functionality that will be utilized by the filter response wrapper.


Constructor Summary
FilterServletOutputStream(java.io.OutputStream output)
          Create a new filter servlet outputstream
 
Method Summary
 void write(byte[] b)
           
 void write(byte[] b, int off, int len)
           
 void write(int b)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FilterServletOutputStream

public FilterServletOutputStream(java.io.OutputStream output)
Create a new filter servlet outputstream

Parameters:
output - the output stream to wrap
Method Detail

write

public void write(int b)
           throws java.io.IOException
Throws:
java.io.IOException

write

public void write(byte[] b)
           throws java.io.IOException
Throws:
java.io.IOException

write

public void write(byte[] b,
                  int off,
                  int len)
           throws java.io.IOException
Throws:
java.io.IOException