com.ibm.wsspi.webcontainer.servlet

Interface IServletResponse

  • All Superinterfaces:
    java.lang.Cloneable, javax.servlet.ServletResponse


    public interface IServletResponse
    extends javax.servlet.ServletResponse, java.lang.Cloneable
    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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method and Description
      void addHeader(byte[] name, byte[] value)
      Add a header with the given byte array values
      java.lang.Object clone()
      Clone the response object
      • Methods inherited from interface javax.servlet.ServletResponse

        flushBuffer, getBufferSize, getCharacterEncoding, getContentType, getLocale, getOutputStream, getWriter, isCommitted, reset, resetBuffer, setBufferSize, setCharacterEncoding, setContentLength, setContentType, setLocale
    • Method Detail

      • addHeader

        void addHeader(byte[] name,
                       byte[] value)
        Add a header with the given byte array values
        Parameters:
        name -
        value -
      • clone

        java.lang.Object clone()
                        throws java.lang.CloneNotSupportedException
        Clone the response object
        Returns:
        Throws:
        java.lang.CloneNotSupportedException