Interface HttpResponse

    • Method Detail

      • isCached

        boolean isCached()
        Deprecated.
      • isFailed

        boolean isFailed()
        Deprecated.
      • isNotFound

        boolean isNotFound()
        Deprecated.
      • isNotPermitted

        boolean isNotPermitted()
        Deprecated.
      • getResponseURI

        URI getResponseURI()
        Deprecated.
        Returns the URI of the site that the response came from. The URI will be absolute if the host configuration has been set and relative otherwise.
        Returns:
        the URI of the response
        Since:
        5.1.5
      • getCharset

        String getCharset()
        Deprecated.
        Returns the charset of the response.
        Returns:
        the charset of the response, or null.
        Since:
        5.1.5
      • getMIMEType

        String getMIMEType()
        Deprecated.
        Returns the MIME type of the response.
        Returns:
        the MIME type of the response.
        Since:
        5.1.5
      • getContentType

        String getContentType()
        Deprecated.
        Returns the type of the response content.
        Returns:
        a string containing the MIME type and the charset of the response.
        See Also:
        getCharset(), getMIMEType()
      • getHeaders

        String[] getHeaders​(String name)
        Deprecated.
        Retrieves all HTTP response headers with the specified name and returns an array of their values.
        Parameters:
        name - the HTTP response header to retreive. Must not be null, or an IllegalArgumentException will be thrown.
        Returns:
        an array of the header values found on the response, or an empty array. Must not return null.
        Throws:
        IllegalArgumentException - if the name parameter is null
        Since:
        2.10
      • getStatusMessage

        String getStatusMessage()
        Deprecated.
      • getStatusCode

        int getStatusCode()
        Deprecated.
      • finish

        void finish()
        Deprecated.