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 SummaryMethods inherited from interface jakarta.servlet.ServletResponseflushBuffer, getBufferSize, getCharacterEncoding, getContentType, getLocale, getOutputStream, getWriter, isCommitted, reset, resetBuffer, setBufferSize, setCharacterEncoding, setContentLength, setContentType, setLocale
- 
Method Details- 
addHeadervoid addHeader(byte[] name, byte[] value) Add a header with the given byte array values- Parameters:
- name-
- value-
 
- 
cloneClone the response object- Returns:
- Throws:
- CloneNotSupportedException
 
 
-