Interface HttpResponse

All Superinterfaces:
AutoCloseable, Closeable
All Known Implementing Classes:
HttpServerResponse, HttpServletResponseWrapper, MockHttpResponse, NettyHttpResponse, ReactorNettyHttpResponse, VertxHttpResponse

public interface HttpResponse extends Closeable
Bridge interface between the base Resteasy JAX-RS implementation and the actual HTTP transport (i.e. a servlet container)
Version:
$Revision: 1 $
Author:
Bill Burke
  • Method Details Link icon

    • getStatus Link icon

      int getStatus()
    • setStatus Link icon

      void setStatus(int status)
    • getOutputHeaders Link icon

      jakarta.ws.rs.core.MultivaluedMap<String,Object> getOutputHeaders()
    • getOutputStream Link icon

      OutputStream getOutputStream() throws IOException
      Throws:
      IOException
    • setOutputStream Link icon

      void setOutputStream(OutputStream os)
    • getAsyncOutputStream Link icon

      default AsyncOutputStream getAsyncOutputStream() throws IOException
      Throws:
      IOException
    • addNewCookie Link icon

      void addNewCookie(jakarta.ws.rs.core.NewCookie cookie)
    • sendError Link icon

      void sendError(int status) throws IOException
      Throws:
      IOException
    • sendError Link icon

      void sendError(int status, String message) throws IOException
      Throws:
      IOException
    • isCommitted Link icon

      boolean isCommitted()
    • reset Link icon

      void reset()
      reset status and headers. Will fail if response is committed
    • close Link icon

      default void close() throws IOException
      Specified by:
      close in interface AutoCloseable
      Specified by:
      close in interface Closeable
      Throws:
      IOException
    • flushBuffer Link icon

      void flushBuffer() throws IOException
      Throws:
      IOException
    • setSuppressExceptionDuringChunkedTransfer Link icon

      default void setSuppressExceptionDuringChunkedTransfer(boolean suppressExceptionDuringChunkedTransfer)
    • suppressExceptionDuringChunkedTransfer Link icon

      default boolean suppressExceptionDuringChunkedTransfer()