Interface IServletResponse
- All Superinterfaces:
Cloneable
,jakarta.servlet.ServletResponse
This interface maybe be used by websphere components in situations where
they would like to do a parallel dispatch. In order to do this, they would have
to clone the response, and pass on the cloned copy to the new thread which
does a dispatch to a resource.
-
Method Summary
Methods inherited from interface jakarta.servlet.ServletResponse
flushBuffer, getBufferSize, getCharacterEncoding, getContentType, getLocale, getOutputStream, getWriter, isCommitted, reset, resetBuffer, setBufferSize, setCharacterEncoding, setContentLength, setContentType, setLocale
-
Method Details
-
addHeader
void addHeader(byte[] name, byte[] value) Add a header with the given byte array values- Parameters:
name
-value
-
-
clone
Clone the response object- Returns:
- Throws:
CloneNotSupportedException
-