Interface ResponseContent
public interface ResponseContent
Holds contents of the fully completed
HttpServletResponse.- Author:
- Lincoln Baxter, III
-
Method Summary
Modifier and TypeMethodDescriptionGet theCharsetwith which response output is encoded.byte[]Get the contents of this buffer.voidsetCharset(Charset charset) Set theCharsetwith which response output will be encoded.voidsetContents(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 theCharsetwith which response output is encoded. -
setCharset
Set theCharsetwith which response output will be encoded.
-