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

com.vk.api.sdk.client.ClientResponse Maven / Gradle / Ivy

Go to download

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