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

com.vk.api.sdk.queries.upload.UploadPhotoOwnerQuery Maven / Gradle / Ivy

Go to download

Java library for VK API interaction, includes OAuth 2.0 authorization and API methods.

There is a newer version: 1.0.16
Show newest version
package com.vk.api.sdk.queries.upload;

import com.vk.api.sdk.client.VkApiClient;
import com.vk.api.sdk.objects.photos.responses.OwnerUploadResponse;

import java.io.File;
import java.util.Map;

public class UploadPhotoOwnerQuery extends UploadQueryBuilder {

    public UploadPhotoOwnerQuery(VkApiClient client, String uploadUrl, Map files) {
        super(client, uploadUrl, files, OwnerUploadResponse.class);
    }

    @Override
    protected UploadPhotoOwnerQuery getThis() {
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy