Interface ResponseContent


public interface ResponseContent
Holds contents of the fully completed HttpServletResponse.
Author:
Lincoln Baxter, III
  • Method Summary

    Modifier and Type
    Method
    Description
    Get the Charset with which response output is encoded.
    byte[]
    Get the contents of this buffer.
    void
    Set the Charset with which response output will be encoded.
    void
    setContents(byte[] contents)
    Set the contents of this buffer.
  • Method Details

    • getContents

      byte[] getContents()
      Get the contents of this buffer.
    • setContents

      void setContents(byte[] contents)
      Set the contents of this buffer.
    • getCharset

      Charset getCharset()
      Get the Charset with which response output is encoded.
    • setCharset

      void setCharset(Charset charset)
      Set the Charset with which response output will be encoded.