com.files.net.FilesResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of files-sdk Show documentation
Show all versions of files-sdk Show documentation
The Files.com Java client library provides convenient access to the Files.com API from JVM based applications.
package com.files.net;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class FilesResponse {
private final int statusCode;
private final Map> headers;
private final String body;
public FilesResponse(int statusCode, Map> headers, String body) {
this.statusCode = statusCode;
this.headers = headers;
this.body = body;
}
public int getStatusCode() {
return this.statusCode;
}
public Map> getHeaders() {
return this.headers;
}
public String getBody() {
return this.body;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy