List of usage examples for javax.servlet.http HttpServletResponseWrapper subclass-usage
From source file org.xwiki.portlet.controller.DispatchedMimeResponse.java
/** * Wraps a servlet response object dispatched from a portlet's render or serve resource method. * * @version $Id$ */ public class DispatchedMimeResponse extends HttpServletResponseWrapper {
From source file org.nuxeo.ecm.platform.ui.web.rest.FancyURLResponseWrapper.java
/** * Used in post methods to rewrite the url with needed get params. Encapsulates response into a wrapper. */ public class FancyURLResponseWrapper extends HttpServletResponseWrapper { private static final Log log = LogFactory.getLog(FancyURLResponseWrapper.class);
From source file net.sf.ehcache.constructs.web.GenericResponseWrapper.java
/**
* Provides a wrapper for {@link javax.servlet.http.HttpServletResponseWrapper}.
* <p/>
* It is used to wrap the real Response so that we can modify it after
* that the target of the request has delivered its response.
* <p/>
From source file org.springframework.session.web.OnCommittedResponseWrapper.java
/**
* Base class for response wrappers which encapsulate the logic for handling an event when the
* {@link javax.servlet.http.HttpServletResponse} is committed.
*
* @author Rob Winch
*/
From source file org.apache.cocoon.servletservice.HttpServletResponseBufferingWrapper.java
/**
* <p>THIS IS INTERNAL CLASS OF SERVLET SERVICE FRAMEWORK AND SHOULDN'T BE USED ELSEWHERE!</p>
*
* <p>This class works in two modes:</p>
* <ol>
* <li>If status code has been set to value different than <code>404</code> (<code>SC_NOT_FOUND</code>) then this class
From source file org.infoscoop.web.i18n.BufferHttpServletResponseWrapper.java
/**
* If you wrap it in this class, we write in it on a memory first of all without writing in it at a real HTTP response.<br>
* The data which wrote in can get by getByteContent() or getStringContent(). Please execute flushBuffer() before get it.<br>
*
* @author Atsuhiko Kimura
*/
From source file it.greenvulcano.gvesb.adapter.http.MultiReadHttpServletResponse.java
/**
*
* @version 3.4.0 27/mar/2014
* @author GreenVulcano Developer Team
*
*/
From source file org.springframework.web.servlet.support.ResponseIncludeWrapper.java
/**
* Response wrapper used for server side include of handler methods.
*
* <p>Inspired by the similar implementations of Apache Tomcat project ( org.apache.catalina.ssi.ResponseIncludeWrapper )
* and Grails Framework ( org.grails.web.util.IncludeResponseWrapper )
* Some parts kindly copied.</p>
From source file org.springframework.security.web.context.OnCommittedResponseWrapper.java
/**
* 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
* @author Rob Winch
From source file grails.plugin.cache.web.GenericResponseWrapper.java
/**
* Provides a wrapper for {@link javax.servlet.http.HttpServletResponseWrapper}.
* <p/>
* It is used to wrap the real Response so that we can modify it after that the
* target of the request has delivered its response.
* <p/>