com.github.kristofa.brave.httpclient.HttpClientResponseImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of brave-apache-http-interceptors Show documentation
Show all versions of brave-apache-http-interceptors Show documentation
Apache http client request and response interceptor implementations.
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