
com.vk.api.sdk.client.ClientResponse 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
Java library for VK API interaction, includes OAuth 2.0 authorization and API methods.
The newest version!
package com.vk.api.sdk.client;
import java.util.Map;
/**
* Created by Anton Tsivarev on 11.09.15.
*/
public class ClientResponse {
private int statusCode;
private String content;
private Map headers;
public ClientResponse(int statusCode, String content, Map headers) {
this.statusCode = statusCode;
this.content = content;
this.headers = headers;
}
public int getStatusCode() {
return statusCode;
}
public String getContent() {
return content;
}
public Map getHeaders() {
return headers;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy