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

com.arangodb.Response Maven / Gradle / Ivy

There is a newer version: 7.8.0
Show newest version
package com.arangodb;

import java.util.Map;

public final class Response {
    private final int responseCode;
    private final Map headers;
    private final T body;

    public Response(int responseCode, Map headers, T body) {
        this.responseCode = responseCode;
        this.headers = headers;
        this.body = body;
    }

    public int getResponseCode() {
        return responseCode;
    }

    public Map getHeaders() {
        return headers;
    }

    public T getBody() {
        return body;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy