
com.github.kristofa.brave.http.HttpClientResponseAdapter Maven / Gradle / Ivy
package com.github.kristofa.brave.http;
import com.github.kristofa.brave.ClientResponseAdapter;
import com.github.kristofa.brave.KeyValueAnnotation;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
public class HttpClientResponseAdapter implements ClientResponseAdapter {
private final HttpResponse response;
public HttpClientResponseAdapter(HttpResponse response) {
this.response = response;
}
@Override
public Collection responseAnnotations() {
int httpStatus = response.getHttpStatusCode();
if ((httpStatus < 200) || (httpStatus > 299)) {
KeyValueAnnotation statusAnnotation = KeyValueAnnotation.create("http.responsecode", String.valueOf(httpStatus));
return Arrays.asList(statusAnnotation);
}
return Collections.EMPTY_LIST;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy