![JAR search and dependency download from the Maven repository](/logo.png)
com.arangodb.Response Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core module for ArangoDB Java Driver
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 - 2025 Weber Informatics LLC | Privacy Policy