Class ServletSubResponseWrapper

java.lang.Object
javax.servlet.ServletResponseWrapper
com.aoapps.servlet.subrequest.ServletSubResponseWrapper
All Implemented Interfaces:
IServletSubResponse, ServletResponse
Direct Known Subclasses:
HttpServletSubResponseWrapper

public class ServletSubResponseWrapper extends ServletResponseWrapper implements IServletSubResponse

Wraps a servlet response with the intent to operate as a concurrent sub response. Any changes made to the response will only affect this response and will not be passed along to the wrapped response.

The wrapped response may change state while this sub response is being processed. Any changes to the wrapped response will not affect this concurrent sub response.

This class is not thread safe.