Interface HttpServerResponse

    • Method Detail

      • getHeader

        String getHeader​(String name)
        Get the header.
        Parameters:
        name - the name.
        Returns:
        the value, or null if not found.
      • getOutputStream

        OutputStream getOutputStream()
        Get the output stream.
        Returns:
        the output stream.
      • setHeader

        void setHeader​(String name,
                       String value)
        Set the specified header.
        Parameters:
        name - the header name.
        value - the header value.
      • setStatus

        void setStatus​(int status)
        Set the status.
        Parameters:
        status - the status.
      • writeHeaders

        void writeHeaders()
                   throws IOException
        Write the response headers.
        Throws:
        IOException - when an I/O error occurs.
      • writeStatusLine

        void writeStatusLine()
                      throws IOException
        Write the status line.
        Throws:
        IOException - when an I/O error occurs.