Class AbstractResponseHandler<T>

    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      abstract T handleEntity​(HttpEntity entity)
      Handle the response entity and transform it into the actual response object.
      T handleResponse​(HttpResponse response)
      Read the entity from the response body and pass it to the entity handler method if the response was successful (a 2xx status code).
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • AbstractResponseHandler

        public AbstractResponseHandler()
    • Method Detail

      • handleResponse

        public T handleResponse​(HttpResponse response)
                         throws HttpResponseException,
                                java.io.IOException
        Read the entity from the response body and pass it to the entity handler method if the response was successful (a 2xx status code). If no response body exists, this returns null. If the response was unsuccessful (>= 300 status code), throws an HttpResponseException.
        Specified by:
        handleResponse in interface ResponseHandler<T>
        Parameters:
        response - The response to process
        Returns:
        A value determined by the response
        Throws:
        ClientProtocolException - in case of an http protocol error
        java.io.IOException - in case of a problem or the connection was aborted
        HttpResponseException
      • handleEntity

        public abstract T handleEntity​(HttpEntity entity)
                                throws java.io.IOException
        Handle the response entity and transform it into the actual response object.
        Throws:
        java.io.IOException