![JAR search and dependency download from the Maven repository](/logo.png)
com.github.kristofa.brave.okhttp.OkHttpResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of brave-okhttp Show documentation
Show all versions of brave-okhttp Show documentation
OkHttp tracing interceptor implementation
package com.github.kristofa.brave.okhttp;
import com.github.kristofa.brave.http.HttpResponse;
import okhttp3.Response;
class OkHttpResponse implements HttpResponse {
private final Response response;
OkHttpResponse(Response response) {
this.response = response;
}
@Override
public int getHttpStatusCode() {
return response.code();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy