com.github.kristofa.brave.httpclient.ApacheClientResponseAdapter 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 org.apache.http.HttpResponse;
import com.github.kristofa.brave.ClientResponseAdapter;
class ApacheClientResponseAdapter implements ClientResponseAdapter {
private final HttpResponse response;
public ApacheClientResponseAdapter(final HttpResponse response) {
this.response = response;
}
@Override
public int getStatusCode() {
return response.getStatusLine().getStatusCode();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy