Interface IServletResponse
-
- All Superinterfaces:
java.lang.Cloneable,javax.servlet.ServletResponse
public interface IServletResponse extends javax.servlet.ServletResponse, java.lang.CloneableThis 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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddHeader(byte[] name, byte[] value)Add a header with the given byte array valuesjava.lang.Objectclone()Clone the response object
-