com.github.kristofa.brave.spring.SpringHttpResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of brave-spring-resttemplate-interceptors Show documentation
Show all versions of brave-spring-resttemplate-interceptors Show documentation
Spring RestTemplate interceptor implementation.
package com.github.kristofa.brave.spring;
import com.github.kristofa.brave.http.HttpResponse;
import org.springframework.http.client.ClientHttpResponse;
import java.io.IOException;
class SpringHttpResponse implements HttpResponse {
private final int status;
SpringHttpResponse(final int status) {
this.status = status;
}
@Override
public int getHttpStatusCode() {
return status;
}
}