Interface WebApplicationResponse

All Superinterfaces:
HttpServletResponse, ServletResponse
All Known Subinterfaces:
WebApplicationServerResponse
All Known Implementing Classes:
DefaultWebApplicationResponse, DefaultWebApplicationServerResponse, EmbeddedResponse, NanoResponse

public interface WebApplicationResponse
extends HttpServletResponse
The WebApplicationResponse API.
Author:
Manfred Riem ([email protected])
  • Method Details

    • getCookies

      java.util.Collection<Cookie> getCookies()
      Get the cookies.
      Returns:
      the cookies.
    • closeAsyncResponse

      void closeAsyncResponse()
    • getUnderlyingOutputStream

      java.io.OutputStream getUnderlyingOutputStream()
      Get the underlying output stream.
      Returns:
      the underlying output stream.
    • setUnderlyingOutputStream

      void setUnderlyingOutputStream​(java.io.OutputStream outputStream)
      Set the underlying output stream.
      Parameters:
      outputStream - the underlying output stream.