List of usage examples for javax.servlet ServletOutputStream subclass-usage
From source file CompressionResponseStream.java
/**
* Implementation of <b>ServletOutputStream</b> that works with
* the CompressionServletResponseWrapper implementation.
*
* @author Amy Roh
* @author Dmitri Valdin
From source file net.sf.j2ep.UrlRewritingOutputStream.java
/**
* A wrapper for the default output stream. This class will make sure all data
* being sent is cached by the stream and can rewrite all the links.
*
* @author Anders Nyman
*/
From source file com.sangupta.jerry.web.ByteArrayServletOutputStream.java
/** * @author sangupta * */ public class ByteArrayServletOutputStream extends ServletOutputStream {
From source file com.sangupta.am.servlet.support.ByteArrayServletOutputStream.java
/**
* A {@link ServletOutputStream} implementation that writes everything to an
* underlying {@link java.io.ByteArrayOutputStream}. This allows us to see
* and manipulate what has been written by the servlet.
*
* @author sangupta
From source file org.nuxeo.ecm.core.io.download.BufferingServletOutputStream.java
/**
* A {@link ServletOutputStream} that buffers everything until {@link #stopBuffering()} is called.
* <p>
* There may only be one such instance per thread.
* <p>
* Buffering is done first in memory, then on disk if the size exceeds a limit.
From source file org.nuxeo.ecm.platform.web.common.requestcontroller.filter.BufferingServletOutputStream.java
/**
* A {@link ServletOutputStream} that buffers everything until
* {@link #stopBuffering()} is called.
* <p>
* There may only be one such instance per thread.
* <p>
From source file org.jahia.services.applications.StringServletOutputStream.java
/**
* A simple ServletOutputStream based class that writes to a String and
* simultaneously to an output stream if configured.
* Note : none of this is supposed to be optimised in anyway, it was done a
* quick and dirty wayusing mostly already available functions calls to make
* this reliable.
From source file com.sonicle.webtop.core.app.servlet.response.GZippableOutputStream.java
/** * * @author malbinola */ public class GZippableOutputStream extends ServletOutputStream { private final AtomicBoolean opened = new AtomicBoolean(true);
From source file GZIPFilter.java
class GZIPResponseStream extends ServletOutputStream { protected ByteArrayOutputStream baos = null; protected GZIPOutputStream gzipstream = null; protected boolean closed = false; protected HttpServletResponse response = null; protected ServletOutputStream output = null;
From source file com.pai.app.web.core.framework.web.filter.CompressionResponseStream.java
/**
* Implementation of <b>ServletOutputStream</b> that works with
* the CompressionServletResponseWrapper implementation.
*
* @author Amy Roh
* @author Dmitri Valdin