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

com.github.kristofa.brave.jersey.JerseyClientResponseAdapter Maven / Gradle / Ivy

package com.github.kristofa.brave.jersey;

import com.github.kristofa.brave.ClientResponseAdapter;
import com.sun.jersey.api.client.ClientResponse;

class JerseyClientResponseAdapter implements ClientResponseAdapter {

    private final ClientResponse response;

    public JerseyClientResponseAdapter(final ClientResponse response) {
        this.response = response;
    }

    @Override
    public int getStatusCode() {
        return response.getStatus();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy