All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.kristofa.brave.httpclient.HttpClientResponseImpl Maven / Gradle / Ivy

There is a newer version: 3.7.0
Show newest version
package com.github.kristofa.brave.httpclient;

import com.github.kristofa.brave.http.HttpResponse;


class HttpClientResponseImpl implements HttpResponse {

    private final org.apache.http.HttpResponse response;

    public HttpClientResponseImpl(org.apache.http.HttpResponse response) {
        this.response = response;
    }

    @Override
    public int getHttpStatusCode() {
        return response.getStatusLine().getStatusCode();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy