All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.kristofa.brave.spring.SpringHttpResponse Maven / Gradle / Ivy

There is a newer version: 3.7.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy