Class HttpResponse

java.lang.Object
org.metricshub.http.HttpResponse

public class HttpResponse extends Object
Represents an HTTP Response in a simplified way
  • Status code (200, 400, etc.)
  • Header (Content-type: application/json, etc.)
  • Body
  • Constructor Details

    • HttpResponse

      public HttpResponse()
      Create a new HTTP Response
  • Method Details

    • getStatusCode

      public int getStatusCode()
      Returns:
      HTTP status code (200, 300, etc.)
    • setStatusCode

      public void setStatusCode(int code)
      Sets the HTTP status code
      Parameters:
      code - HTTP status code (200, 302, etc.)
    • getHeader

      public String getHeader()
      Get the HTTP header as a single string like below:
       Content-type: text/html
       Content-length: 34094
       
      Returns:
      the HTTP header
    • appendHeader

      public void appendHeader(String name, String value)
      Add one header value
      Parameters:
      name - Header name (e.g. "Content-type")
      value - Header value (e.g. "text/html")
    • getBody

      public String getBody()
      Returns:
      the body of the HTTP response
    • appendBody

      public void appendBody(String data)
      Append content to the body of the HTTP response
      Parameters:
      data - Data to append
    • toString

      public String toString()
      Overrides:
      toString in class Object
      Returns:
      the entire HTTP response, header and body