Package 

Interface HttpResponseInfo


  • 
    public interface HttpResponseInfo
    
                        

    Represents information about an HTTP response.

    • Method Summary

      Modifier and Type Method Description
      abstract String getUrl() Represents the URL associated with an HTTP response.
      abstract Integer getStatusCode() Represents the HTTP status code associated with the response.
      abstract Map<String, List<String>> getHeaders() Represents the HTTP headers associated with a response.
      abstract String getContentType() Represents the MIME type of the payload associated with an HTTP response.
      abstract Long getContentLength() Retrieves the content length from the response information.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getUrl

         abstract String getUrl()

        Represents the URL associated with an HTTP response.

      • getStatusCode

         abstract Integer getStatusCode()

        Represents the HTTP status code associated with the response.

      • getContentType

         abstract String getContentType()

        Represents the MIME type of the payload associated with an HTTP response.

      • getContentLength

         abstract Long getContentLength()

        Retrieves the content length from the response information.